Last active
January 30, 2018 15:27
-
-
Save carbonrobot/3369d4885ba70e0c8c2c to your computer and use it in GitHub Desktop.
GIT Tricks
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
// Prettier Log output | |
git config --global alias.logc "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%C(cyan) <%an>%Creset' --abbrev-commit" | |
// show all branches by owner | |
git for-each-ref --format='%(committerdate) %09 %(authorname) %09 %(refname)' | sort -k5n -k2M -k3n -k4n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment