]> git.phdru.name Git - git-scripts.git/commitdiff
Feat(pull-usrlocalsrc): Use fixed remote `origin`
authorOleg Broytman <phd@phdru.name>
Sun, 28 Mar 2021 07:06:36 +0000 (10:06 +0300)
committerOleg Broytman <phd@phdru.name>
Sun, 28 Mar 2021 07:06:36 +0000 (10:06 +0300)
If there is no `upstream` the only remote is `origin`.

pull-usrlocalsrc

index f3ce96b671e39e175692c897fa509fe82c7ef307..1413803bf598da1d04b88d1777ab870b29401156 100755 (executable)
@@ -11,7 +11,7 @@ while read d; do
    echo "----- $d -----"; cd "$d" &&
    if has_remote upstream && has_remote origin; then
       git pull upstream master && git push origin master || exit 1
-   else
-      git remote | xargs -I% git pull % master || exit 1
+   elif has_remote origin; then
+      git pull origin master || exit 1
    fi
 done