X-Git-Url: https://git.sev.monster/~sev/dotfiles.git/blobdiff_plain/c9c531f22e5208efd40f4d9c625ae15a2797ecc6..3b9bd321d67bbb34fd4b38d7fc74435c5b75df83:/base/.gitconfig?ds=sidebyside diff --git a/base/.gitconfig b/base/.gitconfig index 70f8a2c..8d0cd8f 100644 --- a/base/.gitconfig +++ b/base/.gitconfig @@ -1,7 +1,12 @@ [user] - email = git@ds6.pw - name = ds6 + email = git@sev.monster + name = sev [alias] - pushall = !git remote | tr -s '\\n' '\\0' | xargs -0 -P3 git push - pull-submodules = submodule foreach git pull origin master + 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