author | Matt Mackall <mpm@selenic.com> |
Tue, 12 Jul 2005 20:55:42 -0800 | |
changeset 687 | 44b30755d07c |
parent 547 | 4fc63e22b1fe |
child 749 | 7e4843b7efd2 |
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 |
set -x |
|
4 |
mkdir t |
|
5 |
cd t |
|
6 |
hg init |
|
7 |
echo a > a |
|
8 |
hg add a |
|
9 |
hg commit -t "test" -u test -d "0 0" |
|
10 |
hg verify |
|
11 |
hg parents |
|
12 |
hg status |
|
13 |
hg undo |
|
14 |
hg verify |
|
15 |
hg parents |
|
16 |
hg status |