view tests/test-convert-authormap @ 8115:ccf20c92534b

i18n-de: Help tests in commands.py done, still working on option description
author Fabian Kreutz <fabian.kreutz@starnet.fi>
date Tue, 21 Apr 2009 11:39:31 +0300
parents 43b70a964e0d
children 6c82beaaa11a
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' -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