X-Git-Url: https://git.phdru.name/?p=dotfiles.git;a=blobdiff_plain;f=.gitconfig;h=9740736f6aef3266ae292bd790f27d52c4ca4402;hp=f03671a01d6c391fef24313993b08e6972caf356;hb=f08975628aad267b22545b05b182f0b79918d441;hpb=50fd0e0066265964ff85582e38cc15d061999e28 diff --git a/.gitconfig b/.gitconfig index f03671a..9740736 100644 --- a/.gitconfig +++ b/.gitconfig @@ -179,8 +179,11 @@ unstage = reset HEAD -- # Github: pull request, Gitlab: merge request - mr = "!f() { git fetch ${2:-origin} refs/merge-requests/$1/head:pr/$1 && git checkout pr/$1; }; f" - pr = "!f() { git fetch ${2:-origin} refs/pull/$1/head:pr/$1 && git checkout pr/$1; }; f" + 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" 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]