view tests/fixtures/pushrenames.sh @ 1484:9f1fa3cc6ba5 stable

test_fetch_renames: change how this if statement works It was just muddying the waters a little when I had to do some debugging.
author Augie Fackler <raf@durin42.com>
date Sun, 26 Jun 2016 20:29:49 -0400
parents 49b7cbe4c8e3
children
line wrap: on
line source

#!/bin/sh
#
# Generate pushrenames.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
echo a > a
echo b > b
echo c > c
echo d > d
echo e > e
svn add a b c d e
svn ci -m "add files"
cd ../..

svnadmin dump testrepo > ../pushrenames.svndump