mirror of
https://github.com/facebook/sapling.git
synced 2024-12-29 08:02:24 +03:00
e0e01cbc81
Summary: This broke a bunch of tests. Revert it and re-enable all the tests. Reviewed By: DurhamG Differential Revision: D19665042 fbshipit-source-id: c3c17e3ac7e2ea028be5b5836bc8349cdf56184e
25 lines
589 B
Perl
25 lines
589 B
Perl
#chg-compatible
|
|
|
|
$ hg init repo
|
|
$ cd repo
|
|
|
|
$ touch foo
|
|
$ hg ci -Am 'add foo'
|
|
adding foo
|
|
|
|
$ hg up -C null
|
|
0 files updated, 0 files merged, 1 files removed, 0 files unresolved
|
|
|
|
this should be stored as a delta against rev 0
|
|
|
|
$ echo foo bar baz > foo
|
|
$ hg ci -Am 'add foo again'
|
|
adding foo
|
|
|
|
$ hg debugindex foo
|
|
rev offset length ..... linkrev nodeid p1 p2 (re)
|
|
0 0 0 ..... 0 b80de5d13875 000000000000 000000000000 (re)
|
|
1 0 13 ..... 1 0376abec49b8 000000000000 000000000000 (re)
|
|
|
|
$ cd ..
|