still working towards correct locations
authorFred T. Hamster <fred@gruntose.com>
Thu, 9 Jan 2025 06:05:06 +0000 (01:05 -0500)
committerFred T. Hamster <fred@gruntose.com>
Thu, 9 Jan 2025 06:05:06 +0000 (01:05 -0500)
need to update how we do the find, since sometimes we need to find above and not just below.

scripts/rev_control/rcheckin.sh
scripts/rev_control/version_control.sh

index 86e39775e08ff59c58fe00c81ff1e80bfac2aeb8..54c1d59d4a72823f4cef84d85bdbc482924e632e 100644 (file)
@@ -25,6 +25,5 @@ popd &>/dev/null
 perform_revctrl_action_on_file "$tempfile" do_revctrl_checkin
 exit_on_error "doing a check-in on: $tempfile"
 
-#rm "$tempfile"
-
 restore_terminal_title
+
index 30f0c14fc1c7b7aacc9b26196edf3fc0bc2d17e7..2ad76f23f9188e2a151fb189d95184227ca20de5 100644 (file)
@@ -100,12 +100,13 @@ function do_revctrl_checkin()
       fi
     fi
   elif [ ! -z "$(seek_writable ".git" "up")" ]; then
-#-d ".git" ]; then
-echo into git case.
     topdir="$(seek_writable ".git" "up")"
 echo "got topdir from seeking of '$topdir'"
     if [ ! -z "$topdir" ]; then
 
+      # jump to the directory above the .git directory, to make git happy.
+      pushd "$topdir/.." &>/dev/null
+
       # take steps to make sure the branch integrity is good and we're up to date against remote repos.
       do_revctrl_careful_update "$topdir"
 
@@ -145,7 +146,10 @@ echo "got topdir from seeking of '$topdir'"
         git push --tags origin "$(my_branch_name)" 2>&1 | grep -v "X11 forwarding request failed" | $TO_SPLITTER
         promote_pipe_return 0
         exit_on_error "git push"
+
       fi
+      # unwind the pushed directory again.
+      popd &>/dev/null
     fi
   else
     # nothing there.  it's not an error though.
@@ -520,7 +524,13 @@ function generate_rev_ctrl_filelist()
   echo -n >$tempfile
   local additional_filter
   find $dirhere -follow -maxdepth $MAX_DEPTH -type d -iname ".svn" -exec echo {}/.. ';' >>$tempfile 2>/dev/null
+
+#hmmm: how to get the report of things ABOVE here, which we need.
+#  can we do an exec using the seek writable?
+
   find $dirhere -follow -maxdepth $MAX_DEPTH -type d -iname ".git" -exec echo {}/.. ';' >>$tempfile 2>/dev/null
+
+
   # CVS is not well behaved like git and (now) svn, and we seldom use it anymore.
   popd &>/dev/null