dotfiles/git/gitconfig
Anthony Cicchetti 6d23bcf45f boop
2021-03-12 08:53:53 -05:00

31 lines
590 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
[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