##// END OF EJS Templates
purge: fix b777dd8f7836 (remove read-only files)...
purge: fix b777dd8f7836 (remove read-only files) - use try/except to avoid unnecessary work - edit only mode bits

File last commit:

r7968:43b70a96 default
r8044:c1e2b740 default
Show More
test-convert-authormap
37 lines | 495 B | text/plain | TextLexer
/ tests / test-convert-authormap
Marti Raudsepp
convert: Add testcase for convert authormap.
r7961 #!/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
Marti Raudsepp
convert: fix authormap handling of lines without '='...
r7962
Marti Raudsepp
convert: handle comments starting with '#' in authormap files
r7968 # comment
Marti Raudsepp
convert: fix authormap handling of lines without '='...
r7962 this line is ignored
Marti Raudsepp
convert: Add testcase for convert authormap.
r7961 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