view tests/fixtures/emptyrepo.sh @ 1022:1c9b1d0e0ba3

layouts: fix failure for nonexistent SVN paths Since b2d89ba `hg clone` fails for incorrect SVN paths with "NameError: global name 'svnwrap' is not defined"
author Vladimir Zakharov <zakharov.vv@gmail.com>
date Thu, 20 Jun 2013 15:07:19 +0400
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