dotconf/.gitconfig

65 lines
1.1 KiB
INI
Raw Normal View History

2020-08-17 14:25:11 -06:00
[user]
email = aaron@bolddaemon.com
name = Aaron Bieber
2021-05-26 08:20:01 -06:00
[branch]
sort = -committerdate
2020-08-17 14:25:11 -06:00
[alias]
log = log --color=never
[push]
2021-02-25 06:07:41 -07:00
default = current
2020-08-17 14:25:11 -06:00
[color]
branch = false
diff = true
interactive = false
log = false
status = false
ui = false
[core]
deltaBaseCacheLimit = 1G
[http]
cookiefile = /home/qbit/.gitcookies
[transfer]
fsckobjects = true
[fetch]
fsckobjects = true
[gpg]
program = gpg2
[filter "lfs"]
clean = git-lfs clean -- %f
process = git-lfs filter-process
required = true
smudge = git-lfs smudge -- %f
[commit]
gpgsign = false
[github]
user = qbit
[sendemail]
smtpserver = mail.messagingengine.com
smtpuser = qbit@fastmail.com
smtpAuth = PLAIN
smtpEncryption = tls
smtpserverport = 587
cc = aaron@bolddaemon.com
confirm = auto
[credential]
helper = netrc
2020-08-19 07:52:47 -06:00
[pull]
rebase = false
[include]
path = ~/work/git/gitconfig
2021-02-25 06:09:30 -07:00
[init]
defaultBranch = main
2021-11-14 06:46:57 -07:00
[merge]
tool = ediff
[mergetool "ediff"]
cmd = emacsclient -c -a \"\" --eval \"(ediff-merge-files-with-ancestor \\\"$LOCAL\\\" \\\"$REMOTE\\\" \\\"$BASE\\\" nil \\\"$MERGED\\\")\"