Mercurial > hg
view tests/test-convert-svn-branches @ 9007:9e839f0c9689
i18n-jp: translation update for 09c6735e3880
author | FUJIWARA Katsunori <foozy@lares.dti.ne.jp> |
---|---|
date | Wed, 01 Jul 2009 18:08:37 +0900 |
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 ..