tests/test-convert-authormap
author Wagner Bruna <wbruna@yahoo.com>
Sun, 01 Aug 2010 01:54:31 -0300
branchstable
changeset 11722 bf1774d95bde
parent 8167 6c82beaaa11a
permissions -rwxr-xr-x
i18n-pt_BR: synchronized with db426935fa94

#!/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