Skip to content

Instantly share code, notes, and snippets.

@jskripsky
Created April 26, 2012 13:09
Show Gist options
  • Save jskripsky/2499442 to your computer and use it in GitHub Desktop.
Save jskripsky/2499442 to your computer and use it in GitHub Desktop.
show all file additions, modifications, deletions and renames in repo.
#!/bin/sh
for commit in $(git log --pretty=format:%H); do git diff --name-status -M100 $commit~1 ${commit}; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment