Show More
@@ -21,10 +21,11 u = uimod.ui.load() | |||
|
21 | 21 | # hide outer repo |
|
22 | 22 | hg.peer(u, {}, '.', create=True) |
|
23 | 23 | |
|
24 |
# |
|
|
25 | hg.clone(u, {}, BUNDLEPATH, 'test0') | |
|
24 | # unbundle with symlink support | |
|
25 | hg.peer(u, {}, 'test0', create=True) | |
|
26 | 26 | |
|
27 | 27 | repo = hg.repository(u, 'test0') |
|
28 | commands.unbundle(u, repo, BUNDLEPATH, update=True) | |
|
28 | 29 | |
|
29 | 30 | # wait a bit, or the status call wont update the dirstate |
|
30 | 31 | time.sleep(1) |
@@ -52,6 +53,8 u = uimod.ui.load() | |||
|
52 | 53 | repo = hg.repository(u, 'test0') |
|
53 | 54 | commands.status(u, repo) |
|
54 | 55 | |
|
55 |
# try |
|
|
56 | # try unbundling a repo which contains symlinks | |
|
56 | 57 | u = uimod.ui.load() |
|
57 | hg.clone(u, {}, BUNDLEPATH, 'test1') | |
|
58 | ||
|
59 | repo = hg.repository(u, 'test1', create=True) | |
|
60 | commands.unbundle(u, repo, BUNDLEPATH, update=True) |
@@ -1,16 +1,12 | |||
|
1 | requesting all changes | |
|
2 | 1 | adding changesets |
|
3 | 2 | adding manifests |
|
4 | 3 | adding file changes |
|
5 | 4 | added 1 changesets with 4 changes to 4 files |
|
6 | 5 | new changesets d326ae2d01ee |
|
7 | updating to branch default | |
|
8 | 6 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved |
|
9 | requesting all changes | |
|
10 | 7 | adding changesets |
|
11 | 8 | adding manifests |
|
12 | 9 | adding file changes |
|
13 | 10 | added 1 changesets with 4 changes to 4 files |
|
14 | 11 | new changesets d326ae2d01ee |
|
15 | updating to branch default | |
|
16 | 12 | 4 files updated, 0 files merged, 0 files removed, 0 files unresolved |
General Comments 0
You need to be logged in to leave comments.
Login now