]> git.phdru.name Git - dotfiles.git/commitdiff
.gitconfig: Default remote is `origin`
authorOleg Broytman <phd@phdru.name>
Thu, 15 Sep 2022 16:05:52 +0000 (19:05 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 15 Sep 2022 16:05:52 +0000 (19:05 +0300)
.gitconfig

index 9740736f6aef3266ae292bd790f27d52c4ca4402..9a7a571a213bce06fb7ab4f11d657249b4d8878a 100644 (file)
 
        # 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]