23 lines
445 B
Plaintext
23 lines
445 B
Plaintext
# ~/.gitconfig
|
|
|
|
[includeIf "gitdir:~/work/"]
|
|
path = .gitconfig-work
|
|
[includeIf "gitdir:~/private/"]
|
|
path = .gitconfig-private
|
|
|
|
# Special Cases
|
|
[includeIf "gitdir:/Users/beisel/.local/share/chezmoi/"]
|
|
path = .gitconfig-private
|
|
|
|
# Fallthrough
|
|
[user]
|
|
email = florian.beisel@intersport.de
|
|
name = Florian Beisel
|
|
[gpg]
|
|
format = ssh
|
|
[core]
|
|
excludesfile = /Users/beisel/.gitignore_global
|
|
autocrlf = input
|
|
[push]
|
|
autoSetupRemote = true
|