I am trying to work out a way to get git to show the list of "name only" changes between 2 commit points (be them tags or branches) for a specific submodule.
I can do this easily using git diff for a single repo by doing the following:
git diff --name-only commitPointA..commitPointB
(Here is another answer that talks about this for reference purposes)
But this lists all the file changes for the repository that I am running the command within.
How can I refine the change list to only display the changes to a certain module, or a collection of modules within the same repo?