Sorry for not answering for such a long time -- I was (and still am) a bit out of order.
In case that this is still not working I'll dump my 0.02 euro into the mix: --- Start --- #!/bin/bash set -x # Set some paths fsvs=`pwd`/../fsvs-1.0.7/src/fsvs repospath=`pwd`/repos reposurl=file://$repospath spool=/var/spool/fsvs targetdir=./dir ignore=skipme # Clean up from last run rm -rf $repospath rm -rf $spool rm -rf $targetdir # Create the dirs mkdir $targetdir touch $targetdir/file mkdir $targetdir/$ignore touch $targetdir/$ignore/file # Now I want to version $dir, but how? svnadmin create $repospath mkdir $spool # goto the target path - most other operations use the current directory # to differentiate between multiple "checkouts" cd $targetdir # set the repository to use $fsvs init $reposurl # I don't get any difference from including this section or not. why? $fsvs ignore ./$ignore # initial status echo "Initial status:" $fsvs st # first commit echo "Initial commit." $fsvs ci -m 'Commit-Test' # status after commit echo "Status after commit:" $fsvs st --- End --- Please try this and tell me any problems. Regards, Phil --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
