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.
use this:
git log --oneline --name-status -1
eg:
$ git log --oneline --name-status bb3ae49 -1 M .vim/spell/en.utf-8.add M .vim/spell/en.utf-8.add.spl
this works just like
git whatchanged --oneline --name-status -1