##// END OF EJS Templates
debugpushkey: list keys sorted
Mads Kiilerich <mads at kiilerich.com> -
r18255:7ca534f3 default
parent child Browse files
Show More
@@ -2156,7 +2156,7 b' def debugpushkey(ui, repopath, namespace'
2156 2156 ui.status(str(r) + '\n')
2157 2157 return not r
2158 2158 else:
2159 for k, v in target.listkeys(namespace).iteritems():
2159 for k, v in sorted(target.listkeys(namespace).iteritems()):
2160 2160 ui.write("%s\t%s\n" % (k.encode('string-escape'),
2161 2161 v.encode('string-escape')))
2162 2162
@@ -51,12 +51,12 b' import bookmark by name'
51 51 Z 0:4e3505fd9583
52 52 $ hg debugpushkey ../a namespaces
53 53 bookmarks
54 phases
55 54 namespaces
56 55 obsolete
56 phases
57 57 $ hg debugpushkey ../a bookmarks
58 X 4e3505fd95835d721066b76e75dbb8cc554d7f77
58 59 Y 4e3505fd95835d721066b76e75dbb8cc554d7f77
59 X 4e3505fd95835d721066b76e75dbb8cc554d7f77
60 60 Z 4e3505fd95835d721066b76e75dbb8cc554d7f77
61 61 $ hg pull -B X ../a
62 62 pulling from ../a
@@ -292,16 +292,16 b' hgweb'
292 292
293 293 $ hg debugpushkey http://localhost:$HGPORT/ namespaces
294 294 bookmarks
295 phases
296 295 namespaces
297 296 obsolete
297 phases
298 298 $ hg debugpushkey http://localhost:$HGPORT/ bookmarks
299 299 @ 9b140be1080824d768c5a4691a564088eede71f9
300 X 9b140be1080824d768c5a4691a564088eede71f9
301 Y c922c0139ca03858f655e4a2af4dd02796a63969
302 Z 0d2164f0ce0d8f1d6f94351eba04b794909be66c
300 303 foo 0000000000000000000000000000000000000000
301 304 foobar 9b140be1080824d768c5a4691a564088eede71f9
302 Y c922c0139ca03858f655e4a2af4dd02796a63969
303 X 9b140be1080824d768c5a4691a564088eede71f9
304 Z 0d2164f0ce0d8f1d6f94351eba04b794909be66c
305 305 $ hg out -B http://localhost:$HGPORT/
306 306 comparing with http://localhost:$HGPORT/
307 307 searching for changed bookmarks
@@ -165,8 +165,8 b' test pushkeys and bookmarks'
165 165 $ cd ../local
166 166 $ hg debugpushkey --config ui.ssh="python \"$TESTDIR/dummyssh\"" ssh://user@dummy/remote namespaces
167 167 bookmarks
168 namespaces
168 169 phases
169 namespaces
170 170 $ hg book foo -r 0
171 171 $ hg out -B
172 172 comparing with ssh://user@dummy/remote
General Comments 0
You need to be logged in to leave comments. Login now