dotfiles/.gitconfig
Michael Grote 5716671534 git: https://jvns.ca/blog/2024/02/16/popular-git-config-options/
Signed-off-by: Michael Grote <michael.grote@posteo.de>
2024-02-24 17:55:18 +01:00

38 lines
813 B
INI

[user]
name = Michael Grote
email = michael.grote@posteo.de
[credential]
helper = store
[alias]
remote = remote -v
[core]
autocrlf = input
whitespace = blank-at-eol,space-before-tab,blank-at-eof
[help]
autocorrect = 20 # https://opensource.com/article/20/11/git-aliases
[status]
showUntrackedFiles = all
[push]
default = simple
[pull]
rebase = true
autostash = true
[merge]
conflictStyle = diff3
autostash = true
[rebase]
autostash = true
[diff]
renames = true
wsErrorHighlight = all
[fetch]
prune = true
[safe]
directory = ~/dotfiles
[advice]
addIgnoredFile = true
addEmptyPathspec = false
[commit]
verbose = true
[rerere]
enabled = true