X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Frev_control%2Fversion_control.sh;h=491b77a9234ae2722944a51defe9bfa87964a89e;hb=7f70f21fc751fec03fb0bc994048532c1f0205e2;hp=8c7e996162769570b7c3b7644ae15063dd84ee70;hpb=0ba4e1bd22131a5ef6a254fa209b3c6dd1d33eb9;p=feisty_meow.git diff --git a/scripts/rev_control/version_control.sh b/scripts/rev_control/version_control.sh index 8c7e9961..491b77a9 100644 --- a/scripts/rev_control/version_control.sh +++ b/scripts/rev_control/version_control.sh @@ -17,6 +17,11 @@ export MAX_DEPTH=5 # use our splitter tool for lengthy output if it's available. if [ ! -z "$(which splitter)" ]; then TO_SPLITTER="$(which splitter)" + +#hmmm: another reusable chunk here, getting terminal size. + # calculate the number of columsn in the terminal. + cols=$(stty size | awk '{print $2}') + TO_SPLITTER+=" --maxcol $(($cols - 1))" else TO_SPLITTER=cat fi @@ -295,6 +300,9 @@ function do_careful_git_update() return 0 fi + state=$(check_branch_state "$this_branch") + echo "=> branch '$this_branch' state prior to remote update is: $state" + # first update all our remote branches to their current state from the repos. git remote update | $TO_SPLITTER promote_pipe_return 0 @@ -304,7 +312,7 @@ function do_careful_git_update() #appears to be useless; reports no changes when we need to know about remote changes that do exist: #hmmm: trying it out again now that things are better elsewhere. let's see what it says. state=$(check_branch_state "$this_branch") - echo "=> branch '$this_branch' state is: $state" + echo "=> branch '$this_branch' state after remote update is: $state" # this code is now doing what i have to do when i repair the repo. and it seems to be good so far. local branch_list=$(all_branch_names) @@ -323,6 +331,8 @@ function do_careful_git_update() # we are pretty sure the remote branch does exist. git pull --no-ff origin "$bran" | $TO_SPLITTER promote_pipe_return 0 + + echo "=> branch '$bran' state after pull is: $state" fi test_or_die "git pull of remote branch: $bran" done