test-clone.out
32 lines
| 556 B
| text/plain
|
TextLexer
/ tests / test-clone.out
mpm@selenic.com
|
r550 | + mkdir a | ||
+ cd a | ||||
+ hg init | ||||
+ echo a | ||||
+ hg add a | ||||
mpm@selenic.com
|
r749 | + hg commit -m test -d '0 0' | ||
mpm@selenic.com
|
r550 | + hg clone . ../b | ||
+ cd ../b | ||||
+ cat a | ||||
a | ||||
+ hg verify | ||||
checking changesets | ||||
checking manifests | ||||
crosschecking files in changesets and manifests | ||||
checking files | ||||
1 files, 1 changesets, 1 total revisions | ||||
+ hg clone -U . ../c | ||||
+ cd ../c | ||||
+ cat a | ||||
cat: a: No such file or directory | ||||
+ hg verify | ||||
checking changesets | ||||
checking manifests | ||||
crosschecking files in changesets and manifests | ||||
checking files | ||||
1 files, 1 changesets, 1 total revisions | ||||
+ mkdir ../d | ||||
+ cd ../d | ||||
+ hg clone ../a | ||||
+ cd a | ||||
+ hg cat a | ||||
a | ||||