Show More
@@ -217,6 +217,7 b' def _oldheadssummary(repo, remoteheads, ' | |||
|
217 | 217 | # This explains why the new head are very simple to compute. |
|
218 | 218 | r = repo.set('heads(%ln + %ln)', oldheads, outgoing.missing) |
|
219 | 219 | newheads = list(c.node() for c in r) |
|
220 | # set some unsynced head to issue the "unsynced changes" warning | |
|
220 | 221 | unsynced = inc and set([None]) or set() |
|
221 | 222 | return {None: (oldheads, newheads, unsynced)} |
|
222 | 223 | |
@@ -313,12 +314,18 b' def checkheads(repo, remote, outgoing, r' | |||
|
313 | 314 | newhs = candidate_newhs |
|
314 | 315 | unsynced = sorted(h for h in unsyncedheads if h not in discardedheads) |
|
315 | 316 | if unsynced: |
|
316 |
if |
|
|
317 | if None in unsynced: | |
|
318 | # old remote, no heads data | |
|
319 | heads = None | |
|
320 | elif len(unsynced) <= 4 or repo.ui.verbose: | |
|
317 | 321 | heads = ' '.join(short(h) for h in unsynced) |
|
318 | 322 | else: |
|
319 | 323 | heads = (' '.join(short(h) for h in unsynced[:4]) + |
|
320 | 324 | ' ' + _("and %s others") % (len(unsynced) - 4)) |
|
321 |
if |
|
|
325 | if heads is None: | |
|
326 | repo.ui.status(_("remote has heads that are " | |
|
327 | "not known locally\n")) | |
|
328 | elif branch is None: | |
|
322 | 329 | repo.ui.status(_("remote has heads that are " |
|
323 | 330 | "not known locally: %s\n") % heads) |
|
324 | 331 | else: |
General Comments 0
You need to be logged in to leave comments.
Login now