##// END OF EJS Templates
Merge with crew-stable
Merge with crew-stable

File last commit:

r9969:361bee1e default
r10080:6d4fa274 merge default
Show More
test-rollback
48 lines | 976 B | text/plain | TextLexer
Vadim Gelfer
deprecate undo command, replace with rollback command.
r2227 #!/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
Alexandre Vassalotti
restore branch after rollback (issue 902)
r5814
Thomas Arendsen Hein
Do not abort rollback if undo.branch isn't available, but warn.
r6058 echo % Test issue 902
Greg Ward
commit: save commit message so it's not destroyed by rollback....
r9934 hg commit -m "test2"
Alexandre Vassalotti
restore branch after rollback (issue 902)
r5814 hg branch test
hg rollback
hg branch
Thomas Arendsen Hein
Do not abort rollback if undo.branch isn't available, but warn.
r6058
Greg Ward
commit: save commit message so it's not destroyed by rollback....
r9934 echo '% Test issue 1635 (commit message saved)'
echo '.hg/last-message.txt:'
Greg Ward
commit: write last-message.txt with no content modifications....
r9949 cat .hg/last-message.txt ; echo
Greg Ward
commit: save commit message so it's not destroyed by rollback....
r9934
Thomas Arendsen Hein
Do not abort rollback if undo.branch isn't available, but warn.
r6058 echo % Test rollback of hg before issue 902 was fixed
Greg Ward
commit: save commit message so it's not destroyed by rollback....
r9934 hg commit -m "test3"
Thomas Arendsen Hein
Do not abort rollback if undo.branch isn't available, but warn.
r6058 hg branch test
rm .hg/undo.branch
hg rollback
hg branch
Greg Ward
commit: save commit message so it's not destroyed by rollback....
r9934
echo '% rollback by pretxncommit saves commit message (issue 1635)'
echo a >> a
Patrick Mezard
test-rollback: fix reference to /bin/false (fails on OSX)
r9969 hg --config hooks.pretxncommit=false commit -m"precious commit message"
Greg Ward
commit: save commit message so it's not destroyed by rollback....
r9934 echo '.hg/last-message.txt:'
Greg Ward
commit: write last-message.txt with no content modifications....
r9949 cat .hg/last-message.txt ; echo
Greg Ward
commit: if relevant, tell user their commit message was saved....
r9935
echo '% same thing, but run $EDITOR'
cat > $HGTMP/editor <<'__EOF__'
#!/bin/sh
echo "another precious commit message" > "$1"
__EOF__
chmod +x $HGTMP/editor
Patrick Mezard
test-rollback: fix reference to /bin/false (fails on OSX)
r9969 HGEDITOR=$HGTMP/editor hg --config hooks.pretxncommit=false commit
Greg Ward
commit: if relevant, tell user their commit message was saved....
r9935 echo '.hg/last-message.txt:'
cat .hg/last-message.txt