X-Git-Url: https://git.sev.monster/~sev/dotfiles.git/blobdiff_plain/34422a75689251695d4633ce3a26ba7ec676df68..3cec048120c6d59a3f8916078f8f6a99d3e70025:/base/.gitconfig?ds=sidebyside diff --git a/base/.gitconfig b/base/.gitconfig index 71dc34b..8d0cd8f 100644 --- a/base/.gitconfig +++ b/base/.gitconfig @@ -1,6 +1,12 @@ [user] - email = git@ds6.pw - name = ds6 + email = git@sev.monster + name = sev [alias] - pushall = !git remote | xargs -L1 -P3 git push + push-all = !git remote | xargs -n1 git push + submodules-pull = submodule foreach git pull origin master + pr = "!f() { git fetch -fu ${2:-origin} refs/pull/$1/head:pr/$1 && git checkout pr/$1; }; f" +[pull] + ff = only +[init] + defaultBranch = master