Created
October 30, 2013 18:27
-
-
Save arvearve/7237537 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 = | |
email = | |
[github] | |
user = | |
token = | |
[alias] | |
co = checkout | |
ci = commit | |
st = status | |
br = branch | |
hist = log --graph --abbrev-commit --pretty=format:'%C(red)%h%C(reset) - %C(green)(%ar)%C(reset) %C(auto)%s - %C(bold blue)%an %C(auto)%d' | |
tree = log --graph --abbrev-commit --all --pretty=format:'%C(red)%h%C(reset) - %C(green)(%ar)%C(reset) %C(auto)%s - %C(bold blue)%an %C(auto)%d' | |
type = cat-file -t | |
dump = cat-file -p | |
[core] | |
excludesfile = /Users/arve/.gitignore_global | |
[color] | |
ui = true | |
diff = true | |
branch = true | |
status = true | |
[mergetool] | |
keepBackup = true | |
[push] | |
default = current | |
[branch] | |
autosetuprebase = always | |
[i18n] | |
logOutputEncoding = UTF-8 | |
[diff] | |
algorithm = patience | |
tool = colordiff | |
[difftool] | |
promt = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment