Mercurial > hg
view tests/test-convert-svn-branches @ 9501:6b3f9b3686ef
i18n-da: translate addremove, branch, and cat
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Mon, 28 Sep 2009 00:23:44 +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 ..