dotfiles/git/gitconfig

28 lines
541 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
[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