From c4c2b8b3a6ad11726f0f0ed0665ffff92ad9e744 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Sat, 13 Apr 2013 08:53:29 -0400 Subject: [PATCH] cleaned up commented code that moved to vers ctrl lib. --- scripts/rev_control/rev_checkin.sh | 11 ----------- scripts/rev_control/rev_diff.sh | 1 - scripts/rev_control/rev_update.sh | 10 ---------- scripts/rev_control/svnapply.sh | 3 ++- 4 files changed, 2 insertions(+), 23 deletions(-) diff --git a/scripts/rev_control/rev_checkin.sh b/scripts/rev_control/rev_checkin.sh index 58782434..15d86683 100644 --- a/scripts/rev_control/rev_checkin.sh +++ b/scripts/rev_control/rev_checkin.sh @@ -17,17 +17,6 @@ for i in * ; do if [ -d "$i" ]; then echo "[$i]" do_checkin $i -# pushd $i &>/dev/null -# # only update if we see a repository living there. -# if [ -d ".svn" ]; then -# svn ci . -# elif [ -d ".git" ]; then -# git commit . -# git push -# elif [ -d "CVS" ]; then -# cvs diff . -# fi -# popd &>/dev/null echo "=======" fi done diff --git a/scripts/rev_control/rev_diff.sh b/scripts/rev_control/rev_diff.sh index 596cc794..f197b3d9 100644 --- a/scripts/rev_control/rev_diff.sh +++ b/scripts/rev_control/rev_diff.sh @@ -30,4 +30,3 @@ done popd &>/dev/null - diff --git a/scripts/rev_control/rev_update.sh b/scripts/rev_control/rev_update.sh index a6c658b3..3bf92132 100644 --- a/scripts/rev_control/rev_update.sh +++ b/scripts/rev_control/rev_update.sh @@ -17,16 +17,6 @@ for i in * ; do if [ -d "$i" ]; then echo "[$i]" do_update "$i" -# pushd $i &>/dev/null -# # only update if we see a repository living there. -# if [ -d ".svn" ]; then -# svn update . -# elif [ -d ".git" ]; then -# git pull -# elif [ -d "CVS" ]; then -# cvs update . -# fi -# popd &>/dev/null echo "=======" fi done diff --git a/scripts/rev_control/svnapply.sh b/scripts/rev_control/svnapply.sh index 040675ce..c9db62e7 100644 --- a/scripts/rev_control/svnapply.sh +++ b/scripts/rev_control/svnapply.sh @@ -8,7 +8,8 @@ # List all conflicted files: # svnapply C ls -l # -# found on web at: http://stackoverflow.com/questions/160104/how-do-you-add-all-untracked-files-in-svn-something-like-git-add-i +# found on web at: +# http://stackoverflow.com/questions/160104/how-do-you-add-all-untracked-files-in-svn-something-like-git-add-i # PATTERN="$1"; shift -- 2.34.1