Mercurial > hg
view tests/test-convert-svn-branches @ 9039:8761863c3118
p4: simplify sort key
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Sun, 05 Jul 2009 12:50:14 +0200 |
parents | 9c75f16f577c |
children | d80a251baf9a |
line wrap: on
line source
#!/bin/sh "$TESTDIR/hghave" svn svn-bindings || exit 80 fix_path() { tr '\\' / } echo "[extensions]" >> $HGRCPATH echo "convert = " >> $HGRCPATH echo "hgext.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 ..