author | Martin Geisler <mg@lazybytes.net> |
Tue, 07 Apr 2009 22:47:56 +0200 | |
changeset 8026 | 683d8ebcf434 |
parent 7968 | 43b70a964e0d |
child 8167 | 6c82beaaa11a |
permissions | -rwxr-xr-x |
#!/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' -d '0 0' 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