Mercurial > hg
view tests/test-convert-authormap @ 9092:9aebeea7ac00
subrepo: use hg.repository instead of creating localrepo directly
this way, extensions' reposetup will be called, which allows for git
subrepos to be handled by hg-git (and I believe the same goes for
svn and hgsubversion)
author | Abderrahim Kitouni <a.kitouni@gmail.com> |
---|---|
date | Sat, 04 Jul 2009 14:18:15 +0100 |
parents | 6c82beaaa11a |
children |
line wrap: on
line source
#!/bin/sh cat >> $HGRCPATH <<EOF [extensions] convert= EOF # Prepare orig repo hg init orig cd orig echo foo > foo HGUSER='user name' hg ci -qAm 'foo' cd .. # Explicit --authors cat > authormap.txt <<EOF user name = Long User Name # comment this line is ignored EOF hg convert --authors authormap.txt orig new echo $? cat new/.hg/authormap hg -Rnew log rm -rf new # Implicit .hg/authormap hg init new mv authormap.txt new/.hg/authormap hg convert orig new echo $? hg -Rnew log