Last active
January 11, 2017 11:38
-
-
Save Kein1945/6697580 to your computer and use it in GitHub Desktop.
Gitconfig
This file contains 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
[user] | |
name = Kein | |
email = | |
[alias] | |
st = status | |
unstage = rm --cached | |
hist = log --pretty='format:%h - %an, %ar : %s' --graph | |
h = log --pretty='format:%Cred%h%Creset %C(yellow)%d%Creset - %s %C(green)%ar%Creset %C(blue)%an%Creset' --graph --all --decorate | |
ci = commit -m | |
co = checkout | |
br = branch | |
s = status -sb | |
out = log --pretty='format:%h - %an, %ar : %s' --graph origin/master.. | |
[core] | |
pager = vimpager | |
[color] | |
ui = always | |
[color "diff"] | |
meta = blue black bold | |
[push] | |
default = matching | |
[diff] | |
tool = meld |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment