dotfiles/.gitconfig
2023-09-21 12:04:01 +02:00

39 lines
913 B
INI

[user]
name = Michael Grote
email = michael.grote@posteo.de
signingKey = 4D4C2CD4AE7F095E
[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
[commit]
gpgsign = true
#[gpg] # unter Ubuntu anscheinend nicht notwendig
#program = gpg2
[safe]
directory = ~/dotfiles
[advice]
addIgnoredFile = true
addEmptyPathspec = false