test-remove
17 lines
| 205 B
| text/plain
|
TextLexer
/ tests / test-remove
mpm@selenic.com
|
r936 | #!/bin/sh | ||
hg init a | ||||
cd a | ||||
echo a > foo | ||||
hg add foo | ||||
Thomas Arendsen Hein
|
r1933 | hg commit -m 1 -d "1000000 0" | ||
mpm@selenic.com
|
r936 | rm foo | ||
hg remove foo | ||||
Thomas Arendsen Hein
|
r1933 | hg commit -m 2 -d "1000000 0" | ||
TK Soh
|
r1953 | hg export 0 | ||
hg export 1 | ||||
hg log -p -r 0 | ||||
hg log -p -r 1 | ||||
mpm@selenic.com
|
r936 | |||
cd .. | ||||
hg clone a b | ||||