1
0
Fork 0
dotfiles/git/gitconfig

33 lines
614 B
Plaintext
Raw Normal View History

2013-01-19 13:18:29 +00:00
[hub]
protocol = https
[user]
name = Gregory Eremin
email = magnolia_fan@me.com
[credential]
helper = osxkeychain
[alias]
co = checkout
br = checkout -b
st = status -sb
ci = commit -m
ca = commit -am
2013-02-22 12:32:41 +00:00
up = !sh -c 'git pull --rebase --prune && git log --pretty=format:\"%Cred%ae %Creset- %C(yellow)%s %Creset(%ar)\" HEAD@{1}..'
2013-01-19 13:18:29 +00:00
[color]
diff = auto
status = auto
branch = auto
ui = true
[core]
excludesfile = ~/.gitignore
editor = subl -n -w
2013-01-20 09:40:26 +00:00
[push]
2013-01-20 10:09:49 +00:00
default = current
2013-01-19 13:18:29 +00:00
[apply]
whitespace = nowarn
[mergetool]
keepBackup = false
[difftool]
prompt = false
[help]
autocorrect = 1