Mercurial > hg
view tests/test-convert-svn-branches @ 9283:b3ee4c2e1ff5
test-gpg: suppress secure memory warning
Some platforms (Solaris for one) does not support secure memory and
would give a warning.
author | David Champion <dgc@uchicago.edu> |
---|---|
date | Sun, 05 Jul 2009 13:59:25 -0500 |
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 ..