From: Oleg Broytman Date: Thu, 15 Sep 2022 16:05:52 +0000 (+0300) Subject: .gitconfig: Default remote is `origin` X-Git-Url: https://git.phdru.name/?p=dotfiles.git;a=commitdiff_plain;h=0a383f6b00492da3541c919768803cc4c41bbda9 .gitconfig: Default remote is `origin` --- diff --git a/.gitconfig b/.gitconfig index 9740736..9a7a571 100644 --- a/.gitconfig +++ b/.gitconfig @@ -180,10 +180,10 @@ # Github: pull request, Gitlab: merge request mpr = "!f() { git fetch ${2:-origin} refs/$3/$1/head:pr/$1 && if [ \"$4\" = checkout ]; then git checkout pr/$1; fi; }; f" - fetch-mr = "!f() { git mpr $1 $2 merge-requests; }; f" - merge-request = "!f() { git mpr $1 $2 merge-requests checkout; }; f" - fetch-pr = "!f() { git mpr $1 $2 pull; }; f" - pull-request = "!f() { git mpr $1 $2 pull checkout; }; f" + fetch-mr = "!f() { git mpr $1 ${2:-origin} merge-requests; }; f" + merge-request = "!f() { git mpr $1 ${2:-origin} merge-requests checkout; }; f" + fetch-pr = "!f() { git mpr $1 ${2:-origin} pull; }; f" + pull-request = "!f() { git mpr $1 ${2:-origin} pull checkout; }; f" clean-pr = "!git checkout master ; git for-each-ref refs/heads/pr/* --format=\"%(refname)\" | while read ref ; do branch=${ref#refs/heads/} ; git branch -D $branch ; done" [branch]