Gitconfig changes

This commit is contained in:
Anthony Cicchetti 2022-07-14 09:18:42 -04:00
parent f716abc786
commit 790461e6af

View file

@ -6,7 +6,7 @@
pushall = !git remote | xargs -L1 git push --all
pr = "!f() { git fetch -fu ${2:-$(git remote |grep ^upstream || echo origin)} refs/pull/$1/head:pr/$1 && git checkout pr/$1; }; f"
logp = "log --pretty=format:'%h %ad | %s%d [%an]' --graph --date=short"
pr-clean = "!git for-each-ref refs/heads/pr/* --format='%(refname)' | while read ref ; do branch=${ref#refs/heads/} ; git branch -D $branch ; done"
pr-clean = "!git for-each-ref refs/heads/pr/* --format='%(refname)' | while read ref ; do branch=${ref#refs/heads/} ; git branch -D $branch ; done"
[core]
autocrlf = input
excludesfile = /Users/acicchetti/.gitignore
@ -23,6 +23,8 @@
pretty = fuller
[log]
follow = true
[push]
autoSetupRemote = true
[pull]
rebase = true
[init]