diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-16 20:05:05 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-16 20:05:05 +0000 |
commit | 91c58747e35e7f9725993cbf92cf1c2c0ee5c4a4 (patch) | |
tree | 18d86a99c0e910b7bfb16084feee68fe5a9133c6 /gitconfig | |
parent | 085a9ea7a6fa645767ef5dcde46cbd60426bf339 (diff) |
Adds some gitconfig
Diffstat (limited to 'gitconfig')
-rw-r--r-- | gitconfig | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -5,6 +5,12 @@ excludesfile = /home/lemon/.gitignore_global quotepath = false editor = /usr/bin/vim + autocrlf = input +[sendemail] + smtpserver = smtp.purelymail.com + smtpuser = mrlemon@purelymail.com +# smtpencryption = tls + smtpserverport = 587 [alias] co = checkout ci = commit @@ -22,6 +28,7 @@ default = simple [diff] tool = vimdiff + algorithm = histogram [difftool] prompt = false [color] @@ -35,3 +42,10 @@ rebase = false [init] defaultBranch = master +[filter "lfs"] + clean = git-lfs clean -- %f + smudge = git-lfs smudge -- %f + process = git-lfs filter-process + required = true +[credential] + helper = cache |