##// END OF EJS Templates
Change all references to -t --text commit message to -m and --message.
Change all references to -t --text commit message to -m and --message.

File last commit:

r761:0fb49845 default
r761:0fb49845 default
Show More
test-basic
13 lines | 128 B | text/plain | TextLexer
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 #!/bin/sh
mpm@selenic.com
Add a simple testing framework...
r331
set -x
mkdir t
cd t
hg init
echo a > a
hg add a
Andrew Thompson
Change all references to -t --text commit message to -m and --message.
r761 hg commit -m test -d "0 0"
mpm@selenic.com
Add a simple testing framework...
r331 hg history
hg manifest
hg cat a
Thomas Arendsen Hein
Remove bashisms and use /bin/sh instead of /bin/bash....
r544 hg verify