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
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
# 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