Created
October 22, 2018 18:17
-
-
Save rms1000watt/352527a0de71bf209b76dca72f58838c to your computer and use it in GitHub Desktop.
Sort files by Git Date
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
| #!/usr/bin/env bash | |
| git ls-files -z -- . | xargs -0 -n1 -I{} -- git log -1 --format="%at {}" {} | sort |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment