Last active
July 20, 2022 14:15
-
-
Save mklimek/76fdbb1b3c2fa9498fc68faf12350471 to your computer and use it in GitHub Desktop.
simple and useful git aliases
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
[alias] | |
ci = commit | |
co = checkout | |
st = status | |
br = branch | |
gr = log --date=short --oneline --graph --decorate --all | |
brDetails = branch -va --sort=-committerdate --format='%(authordate:short) %(color:red)%(objectname:short) %(color:yellow)%(refname:short)%(color:reset) (%(color:green)%(committerdate:relative)%(color:reset))' | |
[color] | |
ui = true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment