cleaning approach some more for seeking .git dir
authorFred T. Hamster <fred@gruntose.com>
Thu, 9 Jan 2025 04:59:16 +0000 (23:59 -0500)
committerFred T. Hamster <fred@gruntose.com>
Thu, 9 Jan 2025 04:59:16 +0000 (23:59 -0500)
scripts/rev_control/compact_git.sh
scripts/rev_control/getem.sh
scripts/rev_control/version_control.sh

index ed9ed1671bc47cf611f3847abc7d24780b372f43..ce2be238c4afdef298df1b1a3b9e2f216dd204c7 100644 (file)
@@ -16,7 +16,7 @@ fi
 pushd "$prune_dir" &>/dev/null
 exit_on_error "changing to directory: $prune_dir"
 
-echo "cleaning git repo in directory $(pwd)"
+echo "cleaning git repo in directory '$prune_dir'"
 
 git fsck --full
 exit_on_error "git fsck"
index de90823093a084635d1234d4f9f9ed17e80142f5..72b333cf532c1841179168dea57a3aac923d4411 100644 (file)
@@ -11,10 +11,10 @@ save_terminal_title
 
 # trickery to ensure we can always update feisty meow, including this specific
 # file, even when the operating system has some rude behavior with regard to
-# file locking (ahem, windoze).  and even more rudeness is that the pwd and
-# $TMP may not always be in the same form, which causes endless confusion and
-# badness.  that's why we get the pwd reading for TMP first so we can do an
-# oranges-to-oranges compare.
+# file locking (ahem, windoze).  and even more rudeness is that the 'pwd'
+# output and $TMP may not always be in the same form, which causes endless
+# confusion and badness.  that's why we get the pwd reading for TMP first
+# so we can do an oranges-to-oranges compare.
 tmpdir="$(cd $TMP; \pwd)"
 if [ "$(\pwd)" != "$tmpdir" ]; then
   if [ ! -z "$DEBUG_FEISTY_MEOW" ]; then
index bf96c5421164e90040881c7338b55983f8cec2a2..2c4934f30d471cf7887f26409e9422c2af21f073 100644 (file)
@@ -15,13 +15,16 @@ source "$FEISTY_MEOW_SCRIPTS/tty/terminal_titler.sh"
 export MAX_DEPTH=5
 
 # the name of our "don't check this stuff in" file.
+#hmmm: name this better for the variable name, like FEISTY_MEOW_REV_CONTROL_NO_CHECKIN_FILENAME or something.
 export NO_CHECKIN=".no-checkin"
+#hmmm: move to a global repository of variables perhaps?
 
 # use our splitter tool for lengthy output if it's available.
 if [ ! -z "$(whichable splitter)" ]; then
   TO_SPLITTER="$(whichable splitter)"
-  # calculate the number of columsn in the terminal.
+  # calculate the number of columns in the terminal.
   cols=$(get_maxcols)
+#hmmm: can the get_maxcols throw any errors, such that it gives a bad value?
   TO_SPLITTER+=" --maxcol $(($cols - 1))"
 else
   TO_SPLITTER=cat
@@ -52,24 +55,24 @@ fi
 
 ##############
 
-# does a revision control check-in for the directory provided.
-# this uses the currently configured repository as the target for storage.
+# performs a generalized revision control check-in operation for the directory provided.
+# this uses the directory's currently configured repository and branch as the target for storage.
 function do_revctrl_checkin()
 {
   local directory="$1"; shift
-
-#hmmm: another piece of reusable code, to process the directory for printing.
+#hmmm: abstract reusable code below that processes the directory name for printing.
   # make a nice echoer since we want to use it inside conditions below.
   local nicedir="$directory"
   if [ $nicedir == "." ]; then
     nicedir="$( \cd . && /bin/pwd )"
 #echo "calculated nicedir as '$nicedir'"
   fi
+
+  # prepare some reporting variables ahead of time.
   local blatt_report="echo -ne \nchecking in '$nicedir'...  "
   local tell_no_checkin="echo -ne \nskipping check-in due to presence of $NO_CHECKIN sentinel file: $nicedir"
 
   pushd "$directory" &>/dev/null
-#hmmm: overly elaborate sections below here, but we do want precise handling for git case.
   if [ -d "CVS" ]; then
     if test_writeable "CVS"; then
       do_revctrl_simple_update "$directory"
@@ -100,6 +103,7 @@ function do_revctrl_checkin()
 #-d ".git" ]; then
 echo into git case.
     topdir="$(seek_writeable ".git" "up")"
+echo "got topdir from seeking of '$topdir'"
     if [ ! -z "$topdir" ]; then
 
       # take steps to make sure the branch integrity is good and we're up to date against remote repos.