]> Tony Duckles's Git Repositories (git.nynim.org) - svn2svn.git/blob - tests/make-replay-repo.sh
Handle empty "svn log" commit messages
[svn2svn.git] / tests / make-replay-repo.sh
1 #!/bin/sh
2 # Use svn2svn.py to create a filtered repo with only /trunk history
3
4 PWD=$(pwd)
5 REPO="$PWD/_repo_replay"
6 REPOURL="file://$REPO"
7
8 # Clean-up
9 echo "Cleaning-up..."
10 rm -rf $REPO _wc_target
11
12 # Init repo
13 echo "Creating _repo_replay..."
14 svnadmin create $REPO
15 echo ""
16
17 ## svn2svn /
18 #../svn2svn.py -a -v file://$PWD/_repo_ref file://$PWD/_repo_replay
19
20 # svn2svn /trunk
21 svn mkdir -q -m "Add /trunk" $REPOURL/trunk
22 ../svn2svn.py -a $1 file://$PWD/_repo_ref/trunk file://$PWD/_repo_replay/trunk