Skip to content

Instantly share code, notes, and snippets.

@Sloy
Created July 24, 2019 10:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sloy/2c0935c3eeeb54ed9d95e5c55c694efd to your computer and use it in GitHub Desktop.
Save Sloy/2c0935c3eeeb54ed9d95e5c55c694efd to your computer and use it in GitHub Desktop.
Print the 10 Java files most changed since a given date
git log --after={2019-06-01} --pretty=format: --name-only | sort | uniq -c | sort -rg | grep "\.java" | head -10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment