Last active
December 18, 2015 16:29
-
-
Save ruiwen/5811625 to your computer and use it in GitHub Desktop.
Recommended git configs
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
# Stick this in your repo's .git/config | |
# OR ~/.gitconfig | |
# | |
# Also, | |
# $ sudo apt-get install bash-completion | |
# for autocompletion goodness | |
[color] | |
ui = always | |
[alias] | |
st = status | |
ci = commit | |
br = branch | |
co = checkout | |
df = diff | |
lg = log --all --pretty=format:\"%C(yellow)%h%Creset %s %Cred%d%Creset [%C(green)%aN%Creset %C(blue)%ar%Creset]\" --decorate --graph | |
#logo = log --decorate --oneline --graph --all #--pretty="%C(yellow)%h%Creset %s %Cred%d%Creset [%C(green bold)%aN%Creset %C(blue)%ar%Creset]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment