dotfiles/git/gitconfig
2020-04-21 10:18:51 -04:00

30 lines
573 B
Text

# This is Git's per-user configuration file.
[user]
name = Anthony Cicchetti
email = anthony@anthonycicchetti.com
[alias]
pushall = !git remote | xargs -L1 git push --all
[core]
autocrlf = input
[include]
path = ~/.gitconfig_local
[credential]
helper = ""
helper = manager-core
[credential "https://dev.azure.com"]
useHttpPath = true
[fetch]
prune = true
[format]
pretty = fuller
[log]
follow = true
[pull]
rebase = true
[diff]
tool = vimdiff
[merge]
tool = vimdiff
conflictstyle = diff3
[mergetool "vimdiff"]
cmd = nvim -d $BASE $LOCAL $REMOTE