0

Have can I extract filename of modified/added files from git history of a project? I need a list of modified/added files as a text file.

hd.
  • 17,596
  • 46
  • 115
  • 165

1 Answers1

1

Assuming you mean the stats for a number of commits (range of hashes), you could just do:

git diff --stat <hash1> <hash2>

this will give you the stats for this range from hash1 to hash2.

andipla
  • 363
  • 4
  • 9