Skip to content

Instantly share code, notes, and snippets.

@mattfinlayson
Created June 16, 2014 16:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mattfinlayson/3ac5c34fbecc8f22b424 to your computer and use it in GitHub Desktop.
Save mattfinlayson/3ac5c34fbecc8f22b424 to your computer and use it in GitHub Desktop.
See the most edited files in a git repository
#!/bin/bash
git log --all -M -C --name-only --format='format:' "$@" | sort -n | grep -v '^$' | uniq -c | sort | tail -n 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment