dotfiles/.gitconfig

35 lines
756 B
INI
Raw Normal View History

2020-07-13 09:45:25 +02:00
[user]
2023-02-16 11:14:18 +01:00
name = Michael Grote
email = michael.grote@posteo.de
signingKey = 4D4C2CD4AE7F095E
2020-10-12 18:56:12 +02:00
[credential]
2023-02-16 11:14:18 +01:00
helper = store
2021-05-01 17:00:18 +02:00
[alias]
2023-02-16 11:14:18 +01:00
remote = remote -v
2021-08-12 13:22:23 +02:00
[core]
2023-02-16 11:14:18 +01:00
autocrlf = input
whitespace = blank-at-eol,space-before-tab,blank-at-eof
2021-08-30 22:25:10 +02:00
[help]
2023-02-16 11:14:18 +01:00
autocorrect = 20 # https://opensource.com/article/20/11/git-aliases
[status]
showUntrackedFiles = all
[push]
default = simple
[pull]
rebase = true
2022-01-25 08:49:02 +01:00
[merge]
2023-02-16 11:14:18 +01:00
conflictStyle = diff3
[diff]
renames = true
[fetch]
prune = true
[commit]
gpgsign = true
[gpg]
program = gpg2
2022-04-14 12:22:22 +02:00
[safe]
2023-02-16 11:14:18 +01:00
directory = ~/dotfiles
[advice]
addIgnoredFile = true
addEmptyPathspec = false