a361791ca98af0188613d52ac64b0168ff25f519
jcasper
  Mon Feb 3 19:55:02 2025 -0800
A few more places where git wants explicit --track=direct, no ticket

diff --git src/utils/qa/weeklybld/revertCommits.csh src/utils/qa/weeklybld/revertCommits.csh
index 82b4b7e57c3..2162c4731e0 100755
--- src/utils/qa/weeklybld/revertCommits.csh
+++ src/utils/qa/weeklybld/revertCommits.csh
@@ -1,169 +1,169 @@
 #!/bin/tcsh
 
 if ( "$HOST" != "hgwdev" ) then
  echo "error: you must run this script on beta!"
  exit 1
 endif
 
 cd $WEEKLYBLD
 
 set table=RevertCommits.conf
 if ( ! -e $table ) then
     echo "error: $table not found."
     exit 1
 endif
 
 echo
 echo "BRANCHNN=$BRANCHNN"
 
 #make sure origin/* is up to date
 echo "git fetch to be sure origin/* is up-to-date"
 git fetch
 if ($status) then
     echo "unexpected error running git fetch."
     exit 1
 endif
 
 #see if branch exists
 set x=`git branch | grep "^. v${BRANCHNN}_branch"`
 if ("$x" == "") then
     # branch does not exist, create it
     echo "v${BRANCHNN}_branch does not exist, creating as a tracking branch."
-    git checkout -tb v${BRANCHNN}_branch origin/v${BRANCHNN}_branch
+    git checkout --track=direct -b v${BRANCHNN}_branch origin/v${BRANCHNN}_branch
     if ($status) then
-	echo "error running: git checkout -tb v${BRANCHNN}_branch origin/v${BRANCHNN}_branch"
+	echo "error running: git checkout --track=direct -b v${BRANCHNN}_branch origin/v${BRANCHNN}_branch"
 	exit 1
     endif	
 else
     if ("$x" != "* v${BRANCHNN}_branch") then
 	# switch to branch
 	echo "v${BRANCHNN}_branch exists, checking it out."
 	git checkout v${BRANCHNN}_branch 
 	if ($status) then
 	    echo "error running:  git checkout v${BRANCHNN}_branch"
 	    exit 1
 	endif
     else
 	echo "v${BRANCHNN}_branch exists, and is already checked out."
     endif
 endif
 
 #check working directory is clean
 echo "Checking: is working directory clean?"
 git diff --stat --exit-code
 if ($status) then
     echo "error: working directory not clean, changed tracked files in working directory"
     exit 1
 endif
 git diff --stat --cached --exit-code
 if ($status) then
     echo "error: working directory not clean, files have been staged but not committed"
     exit 1
 endif
 echo "Working directory clean."
 
 set dir="${BUILDDIR}/v${BRANCHNN}_branch/kent/src"
 
 set err=0
 set msg = ""
 echo
 echo "Verifying commits exist and have the right changes in them:"
 echo ""
 echo "NOTE: DO NOT INCLUDE MERGE COMMITS IN YOUR CHERRY PICKS"
 echo ""
 set list = (`cat {$table}`)
 if ( $#list == 0 ) then
     echo "Error: $table is empty. Put commits to be reverted onto v${BRANCHNN}_branch into it, one per line."
     exit 1
 endif
 set errpull64 = "0"
 while ( $#list > 0 )
     set c = $list[1]
     shift list
     git show --stat $c
     if ($status) then
 	echo "failed running: git show --stat $c"
 	echo "You might get this error you need to fetch or pull on master brancha: fatal: bad object <commitId>"
 	exit 1
     endif
     if ( "$1" == "real" ) then
 
 	# revert one commit
 	echo "reverting one commit $c onto v${BRANCHNN}_branch"
 	git revert --no-edit $c
 	if ($status) then
 	    echo "! ! ! failed running: git revert --no-edit $c"
 	    echo "This may be because of conflicts which you will need to resolve and commit."
 	    echo "You might get this error if the changes in the commit specified have already been cherry-picked or patched into the branch."
 	    exit 1
 	endif
 
 	# push to world
 	echo "pushing v${BRANCHNN}_branch to origin"
 	git push origin v${BRANCHNN}_branch
 	if ($status) then
 	    echo "! ! ! failed running: git push (from v${BRANCHNN}_branch)"
 	    echo "This is an unexpected error you may need to investigate who has been messing with v${BRANCHNN}_branch."
 	    exit 1
 	endif	
 
 	if (-d $BUILDDIR/v${BRANCHNN}_branch) then
     	    # log the revert
     	    echo "logging the revert to $BUILDDIR/v${BRANCHNN}_branch/reverts.log"
     	    date +%Y-%m-%d >> $BUILDDIR/v${BRANCHNN}_branch/reverts.log
     	    echo "$c"      >> $BUILDDIR/v${BRANCHNN}_branch/reverts.log
 	endif
 
 	# email the revert
 	echo "emailing the revert"
 	set mailMsg = "Commit $c has been reverted on v${BRANCHNN} branch"
 	git show --stat $c | mail -s "$mailMsg" ${BUILDMEISTEREMAIL} galt@soe.ucsc.edu browser-qa@soe.ucsc.edu
 
 	if (-d $BUILDDIR/v${BRANCHNN}_branch) then
 	    # do git pull in 64-bit build repo	
     	    echo "doing git pull in 64-bit build repo"
     	    pushd "${BUILDDIR}/v${BRANCHNN}_branch/kent/src"
 	    git pull
 	    if ($status) then
 		echo "failed running: git pull (in 64-bit build repo ${BUILDDIR}/v${BRANCHNN}_branch/kent/src)"
     		set errpull64 = "1"
     	    endif
     	    popd 
 	endif
 
 	if (-e pushedToRR.flag ) then
 	    # TODO when all is working smoothly: move the beta branch to this week's branch.
 	    # maybe we can run tagBeta.csh?
 	    echo "TODO: You will need to run tagBeta.csh to update the beta branch."
 	    # TODO maybe run the sub-version tagger automatically too someday.
 	    echo "TODO: You will need to run whatever process to update the branch subversion."
 	endif
 
     endif
     echo ""
 end
 
 echo "All commits specified found."
 
 if ( "$errpull64" == "1" ) then
     echo "error updating 64-bit sandbox."
     exit 1
 endif
 
 # return to master branch
 echo "Returning to master branch"
 git checkout master
 if ($status) then
     echo "error running:  git checkout master"
     exit 1
 endif
 
 if ( "$1" != "real" ) then
 	echo
 	echo "Not real.   To make real changes, put real as cmdline parm."
 	echo
 	exit 0
 endif 
 
 exit 0