.gitconfig reduziert
This commit is contained in:
parent
f05b6949e0
commit
f84bd3585f
1 changed files with 27 additions and 9 deletions
24
.gitconfig
24
.gitconfig
|
@ -1,16 +1,34 @@
|
||||||
[user]
|
[user]
|
||||||
name = Michael Grote
|
name = Michael Grote
|
||||||
email = michael.grote@posteo.de
|
email = michael.grote@dataport.de
|
||||||
|
signingKey = D9EC9A33
|
||||||
[credential]
|
[credential]
|
||||||
helper = store
|
helper = store
|
||||||
[alias]
|
[alias]
|
||||||
remote = remote -v
|
remote = remote -v
|
||||||
c = checkout
|
|
||||||
[core]
|
[core]
|
||||||
editor = vim
|
autocrlf = input
|
||||||
|
whitespace = blank-at-eol,space-before-tab,blank-at-eof
|
||||||
[help]
|
[help]
|
||||||
autocorrect = 20 # https://opensource.com/article/20/11/git-aliases
|
autocorrect = 20 # https://opensource.com/article/20/11/git-aliases
|
||||||
|
[status]
|
||||||
|
showUntrackedFiles = all
|
||||||
|
[push]
|
||||||
|
default = simple
|
||||||
|
[pull]
|
||||||
|
rebase = true
|
||||||
[merge]
|
[merge]
|
||||||
conflictStyle = diff3
|
conflictStyle = diff3
|
||||||
|
[diff]
|
||||||
|
renames = true
|
||||||
|
[fetch]
|
||||||
|
prune = true
|
||||||
|
[commit]
|
||||||
|
gpgsign = true
|
||||||
|
[gpg]
|
||||||
|
program = gpg2
|
||||||
[safe]
|
[safe]
|
||||||
directory = ~/dotfiles
|
directory = ~/dotfiles
|
||||||
|
[advice]
|
||||||
|
addIgnoredFile = true
|
||||||
|
addEmptyPathspec = false
|
||||||
|
|
Loading…
Reference in a new issue