Recommendations came from this blog post:
https://blog.gitbutler.com/how-git-core-devs-configure-git/
Let's see how this works out lol
Test
26 lines
389 B
Plaintext
26 lines
389 B
Plaintext
[branch]
|
|
sort = -committerdate
|
|
[column]
|
|
ui = auto
|
|
[tag]
|
|
sort = version:refname
|
|
[init]
|
|
defaultBranch = main
|
|
[diff]
|
|
algorithm = histogram
|
|
colorMoved = plain
|
|
mnemonicPrefix = true
|
|
renames = true
|
|
[push]
|
|
default = simple
|
|
autoSetupRemote = true
|
|
followTags = true
|
|
[fetch]
|
|
prune = true
|
|
pruneTags = true
|
|
all = true
|
|
[commit]
|
|
verbose = true
|
|
[core]
|
|
excludefiles = ~/.config/git/ignore
|