Show More
@@ -198,7 +198,7 def updatefromremote(ui, repo, remote, p | |||
|
198 | 198 | rb = remote.listkeys('bookmarks') |
|
199 | 199 | changed = False |
|
200 | 200 | localmarks = repo._bookmarks |
|
201 |
for k in rb |
|
|
201 | for k in sorted(rb): | |
|
202 | 202 | if k in localmarks: |
|
203 | 203 | nr, nl = rb[k], localmarks[k] |
|
204 | 204 | if nr in repo: |
@@ -41,8 +41,8 import bookmark by name | |||
|
41 | 41 | adding manifests |
|
42 | 42 | adding file changes |
|
43 | 43 | added 1 changesets with 1 changes to 1 files |
|
44 | adding remote bookmark X | |
|
44 | 45 | updating bookmark Y |
|
45 | adding remote bookmark X | |
|
46 | 46 | adding remote bookmark Z |
|
47 | 47 | (run 'hg update' to get a working copy) |
|
48 | 48 | $ hg bookmarks |
@@ -145,9 +145,9 divergent bookmarks | |||
|
145 | 145 | adding manifests |
|
146 | 146 | adding file changes |
|
147 | 147 | added 1 changesets with 1 changes to 1 files (+1 heads) |
|
148 | divergent bookmark @ stored as @foo | |
|
148 | 149 | divergent bookmark X stored as X@foo |
|
149 | 150 | updating bookmark Z |
|
150 | divergent bookmark @ stored as @foo | |
|
151 | 151 | (run 'hg heads' to see heads, 'hg merge' to merge) |
|
152 | 152 | $ hg book |
|
153 | 153 | @ 1:9b140be10808 |
@@ -324,10 +324,10 hgweb | |||
|
324 | 324 | pulling from http://localhost:$HGPORT/ |
|
325 | 325 | no changes found |
|
326 | 326 | divergent bookmark @ stored as @1 |
|
327 | divergent bookmark X stored as X@1 | |
|
328 | adding remote bookmark Z | |
|
327 | 329 | adding remote bookmark foo |
|
328 | 330 | adding remote bookmark foobar |
|
329 | divergent bookmark X stored as X@1 | |
|
330 | adding remote bookmark Z | |
|
331 | 331 | importing bookmark Z |
|
332 | 332 | $ hg clone http://localhost:$HGPORT/ cloned-bookmarks |
|
333 | 333 | requesting all changes |
General Comments 0
You need to be logged in to leave comments.
Login now