Files
dotfiles/home/dot-gitconfig
2025-12-26 01:14:26 +01:00

49 lines
895 B
Plaintext

[alias]
br = "branch"
cm = "commit -a -m 'auto commit'"
lg = "log --oneline --graph --decorate"
st = "status"
up = "!f() { git add .; git commit -a -m 'auto commit'; git fetch -a && git pull && git push; }; f"
up = "!f() { git add .; git commit -a -m 'auto commit'; git fetch -a && git pull && git push; }; f"
[branch]
autoSetupMerge = true
[init]
defaultBranch = "main"
[pull]
rebase = true
[push]
autoSetupRemote = true
default = "current"
[user]
email = "jonashahn1@gmx.net"
name = "Jonas Hahn"
[diff]
tool = "vimdiff"
[core]
autocrlf = input
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[advice]
mergeConflict = false
[sendemail]
smtpserver = mail.gmx.net
smtpuser = jonashahn1@gmx.net
smtpencryption = ssl
smtpserverport = 465
confirm = "always"
[credential]
helper = store