-2

Git traced all the files changed and updated,

is it possible to check how many times a file have been changed?

or one more step sort files by times they were modified?

AbstProcDo
  • 19,953
  • 19
  • 81
  • 138

1 Answers1

3
git log --pretty='' --name-only | sort | uniq -c | sort -n
jthill
  • 55,082
  • 5
  • 77
  • 137