author | Robin Farine <robin.farine@terminus.org> |
Sat, 18 Feb 2006 07:37:59 -0800 | |
changeset 1747 | 91c56c427171 |
parent 1570 | 6a104941d56a |
child 1933 | 7544700fd931 |
permissions | -rwxr-xr-x |
936 | 1 |
#!/bin/sh |
2 |
||
3 |
hg init a |
|
4 |
cd a |
|
5 |
echo a > foo |
|
6 |
hg add foo |
|
7 |
hg commit -m 1 -d "0 0" |
|
8 |
rm foo |
|
9 |
hg remove foo |
|
10 |
hg commit -m 2 -d "0 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 |