A fast solution:
Code:
SOURCEDIR=/home/user/htdocs/project-x
SVNDIR=/home/svn/repo/px/trunk
cp \
$SOURCEDIR/index.php \
$SOURCEDIR/init.php \
$SOURCEDIR/conf.php \
$SVNDIR
cp \
$SOURCEDIR/includes/someclass.php \
$SOURCEDIR/includes/something.php \
$SVNDIR/includes
echo -n "Release note for SVN commit: "
read note
svn ci -m "$note"
is that what you saying?
make sure those files are under SVN already.