`Gitlab` calls "pull requests" "merge requests"
and have different URLs for them.
sw = show --word-diff --decorate
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"
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"