From c4d9a08d9eda7beeb0c1c995c2734c4fdc869328 Mon Sep 17 00:00:00 2001 From: "Fred T. Hamster" Date: Fri, 13 Jan 2012 20:40:36 -0800 Subject: [PATCH] made corresponding improvements for git in mass check-out script. --- scripts/rev_control/getme.sh | 35 ++++++++--------------------------- 1 file changed, 8 insertions(+), 27 deletions(-) diff --git a/scripts/rev_control/getme.sh b/scripts/rev_control/getme.sh index 4acd84e7..eaaf7d28 100644 --- a/scripts/rev_control/getme.sh +++ b/scripts/rev_control/getme.sh @@ -24,32 +24,14 @@ function do_update() { directory="$1"; shift - # get the right modifier for the directory name. - compute_modifier "$directory" "out" - - is_svn=1 - checkout_cmd="echo unknown repository for $directory... " - - if [ "$home_system" == "true" ]; then - checkout_cmd="svn update ." - fi - - # then we pretty much ignore what we guessed, and just use the - # appropriate command for what we see inside the directory. - if [ -d "$directory/CVS" ]; then - checkout_cmd="cvs co -P -kb " - modifier= # reset the modifier, since we know we have cvs. - is_svn=0 - elif [ -d "$directory/.svn" ]; then - checkout_cmd="svn update ." - fi - - if [ $is_svn -eq 1 ]; then - pushd "$directory" &>/dev/null - $checkout_cmd - popd &>/dev/null + if [ -d "CVS" ]; then + cvs co -P -kb "$directory" + elif [ -d ".svn" ]; then + svn update . + elif [ -d ".git" ]; then + git pull else - $checkout_cmd "$modifier$directory" + echo unknown repository for $directory... fi } @@ -63,10 +45,9 @@ function checkout_list { continue fi - pushd $i &>/dev/null + pushd $j &>/dev/null echo -n "retrieving '$j'... " do_update $j -#$(basename $j) popd &>/dev/null done done -- 2.34.1