Last active
November 29, 2020 17:05
-
-
Save tyhenry/42a9ed374cc6d03819c9bfe8fb0a9a63 to your computer and use it in GitHub Desktop.
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
# quick git CLI command to view latest commits across all refs on a repo: | |
# paste this to create alias | |
git config --global alias.refs "for-each-ref refs/ --sort=committerdate --format='%(color:red)%(committerdate:short) %(color:yellow)%(objectname:short) %(align:25,left)%(color:cyan)%(refname:short)%(end) %(color:magenta)%(subject) %(color:green)%(authorname)'" | |
# use command | |
git refs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is very useful! Thanks for sharing!