git bashにて以下を実行
$ git diff --stat --name-only <コミットID1> <コミットID2>
diff : 差分を出す
--stat:diffオプション、ファイル名、差分の統計情報()を出す(sample1参照)
--name-only:オプション、ファイル名のみ出す(sample2参照)
git.sample1
$ git diff --stat --name-only <コミットID1> <コミットID2>
fileA
fileB
fileC
...
...
...
git.sample2
$ git diff --stat <コミットID1> <コミットID2>
fileA |56 ++++++-
fileB |5 +++
fileC |66 -
... |
... |
... |