#!/bin/sh

set -e
rm -rf bigrep-repos bigrep-wc
svnadmin create bigrep-repos
svn co svn+ssh://localhost`pwd`/bigrep-repos bigrep-wc
cd bigrep-wc
for i in `seq 1 10`
do
  touch file$i
  svn add file$i
  seq 1 3000 > log
  svn ci -F log
done
svn update

