author | Thomas Arendsen Hein <thomas@intevation.de> |
Mon, 13 Mar 2006 13:05:41 +0100 | |
changeset 1933 | 7544700fd931 |
parent 1570 | 6a104941d56a |
child 1934 | 6af6d02a9879 |
permissions | -rwxr-xr-x |
936 | 1 |
#!/bin/sh |
2 |
||
3 |
hg init a |
|
4 |
cd a |
|
5 |
echo a > foo |
|
6 |
hg add foo |
|
1933
7544700fd931
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1570
diff
changeset
|
7 |
hg commit -m 1 -d "1000000 0" |
936 | 8 |
rm foo |
9 |
hg remove foo |
|
1933
7544700fd931
Use 'hg ci -d "1000000 0"' in tests to circumvent problem with leading zero.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1570
diff
changeset
|
10 |
hg commit -m 2 -d "1000000 0" |
1570
6a104941d56a
hg log -p should show file deletions
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
936
diff
changeset
|
11 |
hg export 0 |
6a104941d56a
hg log -p should show file deletions
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
936
diff
changeset
|
12 |
hg export 1 |
6a104941d56a
hg log -p should show file deletions
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
936
diff
changeset
|
13 |
hg log -p -r 0 |
6a104941d56a
hg log -p should show file deletions
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
936
diff
changeset
|
14 |
hg log -p -r 1 |
936 | 15 |
|
16 |
cd .. |
|
17 |
hg clone a b |