put a git add into the checkin command, so new files automatically get
included and moved files get noticed properly.
REPORT_FILE="$HOME/cloud/overload_history.txt"
-# given a path, this will find how many items are under it, ignoring svn and git files.
+# given a path, this will find how many items are under it, ignoring svn and git files, plus
+# other patterns we happen to notice are not useful.
function calculate_depth()
{
local dir="$1"; shift
- find "$dir" -type f -exec echo \"{}\" ';' | grep -v "\.svn" | grep -v "\.git" | wc -l | tr -d ' '
+ find "$dir" -type f -exec echo \"{}\" ';' | grep -v "\.svn" | grep -v "\.git"| grep -v "\.basket" | grep -v "\.version" | grep -v "\.keep" | wc -l | tr -d ' '
}
##############
function do_checkin()
{
local directory="$1"; shift
- if [ -d "CVS" ]; then
- # this appears to be cvs.
-# pushd "$directory/.." &>/dev/null
- cvs ci .
-###"$directory"
-# popd &>/dev/null
- elif [ -d ".svn" ]; then
- svn ci .
+ if [ -d "CVS" ]; then cvs ci . ;
+ elif [ -d ".svn" ]; then svn ci . ;
elif [ -d ".git" ]; then
- git commit .
- git push
+ git add . # snag all new files. not to everyone's liking.
+ git commit . # tell git about all the files and get a check-in comment.
+ git push # upload the files to the server so others can see them.
else
echo unknown repository for $directory...
fi