From 0a383f6b00492da3541c919768803cc4c41bbda9 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Thu, 15 Sep 2022 19:05:52 +0300 Subject: [PATCH] .gitconfig: Default remote is `origin` --- .gitconfig | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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] -- 2.39.2