28 lines
478 B
Plaintext
28 lines
478 B
Plaintext
[include]
|
|
path = ~/.dotfiles/git/configs/lfs.gitconfig
|
|
path = ~/.dotfiles/git/configs/delta.gitconfig
|
|
|
|
[push]
|
|
default = simple
|
|
|
|
[core]
|
|
excludesfile = ~/.dotfiles/git/gitignore
|
|
|
|
[color]
|
|
ui = true
|
|
|
|
[credential]
|
|
helper = store
|
|
|
|
[pull]
|
|
; If we pull we only want to fast forward, if that is not possible we should not allow pull to work
|
|
; Instead use fetch and then either rebase or merge
|
|
ff = only
|
|
; rebase = false
|
|
|
|
[diff]
|
|
tool = nvimdiff
|
|
|
|
[init]
|
|
defaultBranch = master
|