Skip to content

Instantly share code, notes, and snippets.

@mfrachet
Last active May 5, 2020 09:44
Show Gist options
  • Save mfrachet/e1d122aaeaf9dfba0499b575b3c90f64 to your computer and use it in GitHub Desktop.
Save mfrachet/e1d122aaeaf9dfba0499b575b3c90f64 to your computer and use it in GitHub Desktop.
Git alias
# Time the last 50 files have been modified
git log --format=format: --name-only --since=12.month | egrep -v '^$' | sort | uniq -c | sort -nr | egrep -v '\.json$' | egrep -v '\.lock$' | egrep -v '\.md$' | head -50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment