author | Thomas Arendsen Hein <thomas@intevation.de> |
Fri, 29 Jul 2005 15:19:43 +0100 | |
changeset 800 | ec85f9e6f3b1 |
parent 749 | 7e4843b7efd2 |
child 808 | 8f5637f0a0c0 |
permissions | -rwxr-xr-x |
544
3d4d5f2aba9a
Remove bashisms and use /bin/sh instead of /bin/bash.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
350
diff
changeset
|
1 |
#!/bin/sh |
336 | 2 |
|
3 |
mkdir t |
|
4 |
cd t |
|
5 |
hg init |
|
6 |
echo a > a |
|
7 |
hg add a |
|
749
7e4843b7efd2
Update tests to use commit -m and default -u
mpm@selenic.com
parents:
547
diff
changeset
|
8 |
hg commit -m "test" -d "0 0" |
336 | 9 |
hg verify |
10 |
hg parents |
|
11 |
hg status |
|
12 |
hg undo |
|
13 |
hg verify |
|
14 |
hg parents |
|
15 |
hg status |