Bunch of gitconfig changes
This commit is contained in:
parent
4a07639c42
commit
8cb956be45
2 changed files with 30 additions and 13 deletions
|
@ -1,13 +0,0 @@
|
||||||
# This is Git's per-user configuration file.
|
|
||||||
[user]
|
|
||||||
name = acicchetti
|
|
||||||
email = acicchetti@constantcontact.com
|
|
||||||
[diff]
|
|
||||||
tool = vimdiff
|
|
||||||
[merge]
|
|
||||||
tool = vimdiff
|
|
||||||
conflictstyle = diff3
|
|
||||||
[mergetool "vimdiff"]
|
|
||||||
cmd = nvim -d $BASE $LOCAL $REMOTE
|
|
||||||
[core]
|
|
||||||
autocrlf = input
|
|
30
git/gitconfig
Normal file
30
git/gitconfig
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
# 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
|
Loading…
Add table
Reference in a new issue