cleaned up commented code that moved to vers ctrl lib.
authorChris Koeritz <fred@gruntose.com>
Sat, 13 Apr 2013 12:53:29 +0000 (08:53 -0400)
committerChris Koeritz <fred@gruntose.com>
Sat, 13 Apr 2013 12:53:29 +0000 (08:53 -0400)
scripts/rev_control/rev_checkin.sh
scripts/rev_control/rev_diff.sh
scripts/rev_control/rev_update.sh
scripts/rev_control/svnapply.sh

index 587824343dec248a281d16b42f0d7b225109f030..15d86683f0c6b0fc36215cf389ea8cb6771b7f2d 100644 (file)
@@ -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
index 596cc7947b97ba8270cc0a3f7893523d17e1ab41..f197b3d97264f61e7a8c5806919e72c99c1edce1 100644 (file)
@@ -30,4 +30,3 @@ done
 
 popd &>/dev/null
 
-
index a6c658b3c6746f300c7da2d9a57add2017628f95..3bf9213246c79a13fc1cb455c9a63c9c9459aa20 100644 (file)
@@ -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
index 040675ce3b6d4900bf5d1bee0340492180aeb572..c9db62e71cce74b3756b570637faa8279d42cd88 100644 (file)
@@ -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