view tests/fixtures/emptyrepo.sh @ 695:066b9c8e500e

subvertpy_wrapper: don't assume the version is a three-tuple (fixes #206) 0.7.3.1 breaks this. While at it, the capitalisation of `Subvertpy' is made consistent, and the Subversion tag, if present, is included in the output.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Tue, 14 Sep 2010 21:02:49 +0200
parents 6c9b7cf1c5aa
children
line wrap: on
line source

#!/bin/sh
#
# Generate renames.svndump
#

mkdir temp
cd temp

mkdir project-orig
cd project-orig
mkdir trunk
mkdir branches
cd ..

svnadmin create testrepo
svnurl=file://`pwd`/testrepo
svn import project-orig $svnurl -m "init project"

svn co $svnurl project
cd project/trunk
# Create and remove a file, hgsubversion does not like
# empty repositories
echo a > a
svn add a
svn ci -m "add a"
svn rm a
svn ci -m "remove a"
cd ../..

svnadmin dump testrepo > ../emptyrepo.svndump