REPOS=svn://localhost/home/moi/svn/testsource

cd /tmp
svn mkdir $REPOS/testpush -m "Creation"
svn co  $REPOS/testpush
cd testpush
for fic in 1 2 3 4 5 6 7 8 9 10 11
do
	date >new-file$fic.txt
	svn add new-file$fic.txt
	svn commit -m "Loop $fic"
done

