Lines Matching refs:heads
683 ui.write('Checking for multiple heads (or branches):\n')
685 heads = set(repo.heads())
689 # We care if there's more than one head, and those heads aren't
694 if len(heads) > 1 and heads != parents:
695 ui.write('Workspace has multiple heads (or branches):\n')
696 for head in [repo.changectx(head) for head in heads]:
920 one outgoing head, even if those heads are on the same branch. To
929 changes, applied Mq patches, or has multiple outgoing heads (or
946 heads = set(between) & set(repo.heads())
948 if len(heads) > 1:
949 ui.warn('Workspace has multiple outgoing heads (or branches):\n')
950 for head in sorted(map(repo.changelog.rev, heads), reverse=True):