0

Possible Duplicate:
git: show all changed files between two commits

How can I get a list of files being committed/added between 2 SHA (I get the SHA using 'git log')?

Thank you.

Community
  • 1
  • 1
michael
  • 106,540
  • 116
  • 246
  • 346

1 Answers1

1
git diff  --name-only SHA1 SHA2 
CharlesB
  • 86,532
  • 28
  • 194
  • 218