How to find the number of files changed from one commit to another in git

Viewed 41618

I am working on a git repository which contains huge number of files changed b/w one commit to another, how to extract the number of files changes b/w commits.

5 Answers

In windows:

git whatchanged -1 --format=oneline | find /v /c ""

The important windows-specific piece is that you must replace the wc command used in other solutions with this:

  | find /v /c ""
Related