Mercurial > hg
view tests/test-convert-svn-branches @ 10545:b9e4a67329cd stable
Updated contrib/vim/patchreview.* to version 0.2.1
1) adds a :DiffReview command to review code changes
in the current workspace.
2) removes the need to have patchutils (specifically filterdiff)
installed on the system by implementing patch extraction in
pure vim script.
author | Manpreet Singh <junkblocker@yahoo.com> |
---|---|
date | Wed, 24 Feb 2010 13:12:17 -0800 |
parents | 45885e8f5704 |
children |
line wrap: on
line source
#!/bin/sh "$TESTDIR/hghave" svn svn-bindings || exit 80 echo "[extensions]" >> $HGRCPATH echo "convert = " >> $HGRCPATH echo "graphlog =" >> $HGRCPATH svnadmin create svn-repo cat "$TESTDIR/svn/branches.svndump" | svnadmin load svn-repo > /dev/null echo % convert trunk and branches cat >branchmap <<EOF old3 newbranch EOF hg convert --branchmap=branchmap --datesort -r 10 svn-repo A-hg echo % convert again hg convert --branchmap=branchmap --datesort svn-repo A-hg cd A-hg hg glog --template 'branch={branches} {rev} {desc|firstline} files: {files}\n' hg branches | sed 's/:.*/:/' hg tags -q cd .. echo '% test hg failing to call itself' HG=foobar hg convert svn-repo B-hg 2>&1 | grep itself