so not quite grokked
authorChris Koeritz <fred@gruntose.com>
Fri, 10 Nov 2017 00:59:49 +0000 (19:59 -0500)
committerChris Koeritz <fred@gruntose.com>
Fri, 10 Nov 2017 00:59:49 +0000 (19:59 -0500)
there really is a chain going all the way back to master.  bummer.  however, i think you can get all of the pending updates from upstream with a pull --all.  trying that now.

scripts/rev_control/version_control.sh

index ccb14c25d577784d480f4dfa77b375c45b7c7ca8..b5ad517097d7c5e935791eabc15beb6e79131593 100644 (file)
@@ -264,16 +264,18 @@ function do_update()
     if test_writeable ".git"; then
       $blatt
       retval=0
-      local myself="$(my_branch_name)"
-      local parent="$(parent_branch_name)"
-
-      if [ "$myself" != "$parent" ]; then
-        git pull origin "$parent" 2>&1 | grep -v "X11 forwarding request failed" | squash_first_few_crs
+#      local myself="$(my_branch_name)"
+#      local parent="$(parent_branch_name)"
+#
+#      if [ "$myself" != "$parent" ]; then
+#        git pull origin "$parent" 2>&1 | grep -v "X11 forwarding request failed" | squash_first_few_crs
+#        retval+=${PIPESTATUS[0]}
+#      else
+
+        git pull --all 2>&1 | grep -v "X11 forwarding request failed" | squash_first_few_crs
         retval+=${PIPESTATUS[0]}
-      else
-        git pull 2>&1 | grep -v "X11 forwarding request failed" | squash_first_few_crs
-        retval+=${PIPESTATUS[0]}
-      fi
+
+#      fi
     fi
   else
     # this is not an error necessarily; we'll just pretend they planned this.