diff --git a/git/gitconfig b/git/gitconfig index e1a295a..edf6d19 100644 --- a/git/gitconfig +++ b/git/gitconfig @@ -1,3 +1,5 @@ +# https://jvns.ca/blog/2024/02/16/popular-git-config-options/ + [user] name = Maximilian Wolf email = 69987866+MaxWolf-01@users.noreply.github.com @@ -17,7 +19,7 @@ # ff = only [push] - autoSetupRemote = true + default = current [credential "https://github.com"] helper = @@ -26,8 +28,16 @@ [filter "lfs"] clean = git-lfs clean -- %f smudge = git-lfs smudge -- %f - process = git-lfs filter-process - required = true + process = git-lfs filter-process + required = true + [diff "lockb"] textconv = bun - binary = true + binary = true + +[help] + autocorrect = 10 + +[branch] + sort = -committerdate +