sync/gitconfig

32 lines
693 B
Plaintext
Raw Normal View History

2014-04-19 13:25:29 -04:00
[user]
name = Austen
email = stonewareslord@gmail.com
[alias]
2014-05-30 12:45:50 -04:00
pul = pull
pus = push --all
2014-04-19 13:25:29 -04:00
co = checkout
ci = commit -m
a = add
st = status
br = branch -av
2014-05-27 19:36:53 -04:00
hist = log --all --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ci) %C(bold blue)<%an>%Creset' --abbrev-commit
2014-04-19 13:25:29 -04:00
type = cat-file -t
dump = cat-file -p
d = difftool
[push]
default = matching
2014-04-19 13:25:29 -04:00
[core]
excludesfile = /home/stonewareslord/.gitignore_global
[diff]
tool = vimdiff
[difftool]
prompt = false
[merge]
tool = diffconflicts
[mergetool "diffconflicts"]
cmd = diffconflicts vim $BASE $LOCAL $REMOTE $MERGED
trustExitCode = true
keepBackup = false
[http]
sslVerify = false