From 539107f9827c73f83f5482e34ef52f201f22a22e Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 26 Oct 2020 17:08:36 +0300 Subject: [PATCH] .gitconfig: Add alias `mr` `Gitlab` calls "pull requests" "merge requests" and have different URLs for them. --- .gitconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitconfig b/.gitconfig index b91ec8d..7b4c249 100644 --- a/.gitconfig +++ b/.gitconfig @@ -178,6 +178,8 @@ 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" -- 2.39.2