Skip to content

Instantly share code, notes, and snippets.

@rubberduck203
Created July 6, 2017 12:18
Show Gist options
  • Save rubberduck203/e8438ab3d0c373fc6ec18304bf365eb2 to your computer and use it in GitHub Desktop.
Save rubberduck203/e8438ab3d0c373fc6ec18304bf365eb2 to your computer and use it in GitHub Desktop.
List Files Changed Per Commit
# Provides a list of files changed per commit
# I'm looking to improve on this to get a usable dataset to analyze file change frequency and frequency of files changed in unison over time.
# I'd like to cross reference this with a static code analysis to look for hot spots in a code base.
git log --pretty=format:"%h" | xargs git show --stat --oneline
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment