]> git.phdru.name Git - git-scripts.git/commitdiff
pull-usrlocalsrc: pull from source, push to origin
authorOleg Broytman <phd@phdru.name>
Wed, 2 Nov 2016 19:53:04 +0000 (22:53 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 2 Nov 2016 19:53:04 +0000 (22:53 +0300)
pull-usrlocalsrc

index 5ec06a01b38da175ddf2747c3a1f870972469f74..085520632d821711b13f35786d6057eae48e67c9 100755 (executable)
@@ -2,10 +2,18 @@
 
 PATH=/usr/local/src/Python/git-remote-hg:$PATH
 
+has_remote() {
+   git remote show "$1" >/dev/null 2>&1
+}
+
 prog_dir="`dirname \"$0\"`" &&
 
 cat "$prog_dir"/locate-all.list | grep -F /usr/local/src |
 while read d; do
    echo "----- $d -----"; cd "$d" &&
-   git remote | xargs -I'{}' git pull '{}' master || exit 1
+   if has_remote source && has_remote origin; then
+      git pull source master && git push origin master || exit 1
+   else
+      git remote | xargs -I'{}' git pull '{}' master || exit 1
+   fi
 done