I would like to get a list of all files, which have changed betweet two commits including those in submodules.
I know I can do this:
git diff --name-
July 8,2017
Now to get a diff including that of a submodule, you can use the command -
submodule
git diff --submodule=diff
Note - This has been introduced with Git 2.14.0
"git diff --submodule=diff" now recurses into nested submodules.