author | Thomas Arendsen Hein <thomas@intevation.de> |
Sat, 07 Oct 2006 18:14:03 +0200 | |
changeset 3285 | 484e6b7e7062 |
parent 2227 | 4f072bb06e89 |
child 5814 | dd5a501cb97f |
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 |
|
1933
7544700fd931
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
814
diff
changeset
|
8 |
hg commit -m "test" -d "1000000 0" |
336 | 9 |
hg verify |
10 |
hg parents |
|
11 |
hg status |
|
2227
4f072bb06e89
deprecate undo command, replace with rollback command.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
1933
diff
changeset
|
12 |
hg rollback |
336 | 13 |
hg verify |
14 |
hg parents |
|
15 |
hg status |