Last active
May 5, 2020 09:44
-
-
Save mfrachet/e1d122aaeaf9dfba0499b575b3c90f64 to your computer and use it in GitHub Desktop.
Git alias
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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