##// END OF EJS Templates
commit: write last-message.txt with no content modifications....
commit: write last-message.txt with no content modifications. This assumes the user will use either a sane editor (anything but Notepad) or the same editor again: even Notepad should be able to read what it previously wrote.

File last commit:

r9949:bc3f762a default
r9949:bc3f762a default
Show More
test-rollback
48 lines | 986 B | text/plain | TextLexer
#!/bin/sh
mkdir t
cd t
hg init
echo a > a
hg add a
hg commit -m "test" -d "1000000 0"
hg verify
hg parents
hg status
hg rollback
hg verify
hg parents
hg status
echo % Test issue 902
hg commit -m "test2"
hg branch test
hg rollback
hg branch
echo '% Test issue 1635 (commit message saved)'
echo '.hg/last-message.txt:'
cat .hg/last-message.txt ; echo
echo % Test rollback of hg before issue 902 was fixed
hg commit -m "test3"
hg branch test
rm .hg/undo.branch
hg rollback
hg branch
echo '% rollback by pretxncommit saves commit message (issue 1635)'
echo a >> a
hg --config hooks.pretxncommit=/bin/false commit -m"precious commit message"
echo '.hg/last-message.txt:'
cat .hg/last-message.txt ; echo
echo '% same thing, but run $EDITOR'
cat > $HGTMP/editor <<'__EOF__'
#!/bin/sh
echo "another precious commit message" > "$1"
__EOF__
chmod +x $HGTMP/editor
HGEDITOR=$HGTMP/editor hg --config hooks.pretxncommit=/bin/false commit
echo '.hg/last-message.txt:'
cat .hg/last-message.txt