33 lines
647 B
Text
33 lines
647 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
|
|
excludesfile = /Users/acicchetti/.gitignore
|
|
[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
|
|
[init]
|
|
defaultBranch = main
|