Skip to content

Instantly share code, notes, and snippets.

@raven
Forked from kennyp/git-by-date
Last active April 11, 2019 01:47
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 raven/f535f1ee15f3442994d96b64ee7b57fa to your computer and use it in GitHub Desktop.
Save raven/f535f1ee15f3442994d96b64ee7b57fa to your computer and use it in GitHub Desktop.
If you need to sort files by creation date in git.ex. `find . -name '*ViewModel*' | git-by-date`
#!/bin/bash
while read f
do
echo "$(git log --format="%ai" --reverse "$f" | head -n1) $f"
done | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment