rebase.py
1064 lines
| 42.7 KiB
| text/x-python
|
PythonLexer
/ hgext / rebase.py
Stefano Tortarolo
|
r6906 | # rebase.py - rebasing feature for mercurial | ||
# | ||||
# Copyright 2008 Stefano Tortarolo <stefano.tortarolo at gmail dot com> | ||||
# | ||||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
Stefano Tortarolo
|
r6906 | |||
Dirkjan Ochtman
|
r8934 | '''command to move sets of revisions to a different ancestor | ||
Stefano Tortarolo
|
r6906 | |||
Martin Geisler
|
r7999 | This extension lets you rebase changesets in an existing Mercurial | ||
repository. | ||||
Stefano Tortarolo
|
r6906 | |||
For more information: | ||||
Martin Geisler
|
r9301 | http://mercurial.selenic.com/wiki/RebaseExtension | ||
Stefano Tortarolo
|
r6906 | ''' | ||
Stefano Tortarolo
|
r14884 | from mercurial import hg, util, repair, merge, cmdutil, commands, bookmarks | ||
Augie Fackler
|
r18933 | from mercurial import extensions, patch, scmutil, phases, obsolete, error | ||
Matt Mackall
|
r22901 | from mercurial import copies | ||
Stefano Tortarolo
|
r6906 | from mercurial.commands import templateopts | ||
Mads Kiilerich
|
r23517 | from mercurial.node import nullrev, nullid, hex, short | ||
Ronny Pfannschmidt
|
r8112 | from mercurial.lock import release | ||
Stefano Tortarolo
|
r6906 | from mercurial.i18n import _ | ||
import os, errno | ||||
Pierre-Yves David
|
r23490 | revtodo = -1 | ||
Stefano Tortarolo
|
r10352 | nullmerge = -2 | ||
Pierre-Yves David
|
r18447 | revignored = -3 | ||
Stefano Tortarolo
|
r10352 | |||
Adrian Buehlmann
|
r14306 | cmdtable = {} | ||
command = cmdutil.command(cmdtable) | ||||
Augie Fackler
|
r16743 | testedwith = 'internal' | ||
Adrian Buehlmann
|
r14306 | |||
Augie Fackler
|
r19861 | def _savegraft(ctx, extra): | ||
s = ctx.extra().get('source', None) | ||||
if s is not None: | ||||
extra['source'] = s | ||||
Augie Fackler
|
r19860 | def _savebranch(ctx, extra): | ||
extra['branch'] = ctx.branch() | ||||
def _makeextrafn(copiers): | ||||
"""make an extrafn out of the given copy-functions. | ||||
A copy function takes a context and an extra dict, and mutates the | ||||
extra dict as needed based on the given context. | ||||
""" | ||||
def extrafn(ctx, extra): | ||||
for c in copiers: | ||||
c(ctx, extra) | ||||
return extrafn | ||||
Adrian Buehlmann
|
r14306 | @command('rebase', | ||
[('s', 'source', '', | ||||
Matt Mackall
|
r22789 | _('rebase the specified changeset and descendants'), _('REV')), | ||
Adrian Buehlmann
|
r14306 | ('b', 'base', '', | ||
Matt Mackall
|
r22789 | _('rebase everything from branching point of specified changeset'), | ||
Adrian Buehlmann
|
r14306 | _('REV')), | ||
Pierre-Yves David
|
r15270 | ('r', 'rev', [], | ||
_('rebase these revisions'), | ||||
_('REV')), | ||||
Adrian Buehlmann
|
r14306 | ('d', 'dest', '', | ||
_('rebase onto the specified changeset'), _('REV')), | ||||
('', 'collapse', False, _('collapse the rebased changesets')), | ||||
('m', 'message', '', | ||||
_('use text as collapse commit message'), _('TEXT')), | ||||
Matt Mackall
|
r15219 | ('e', 'edit', False, _('invoke editor on commit messages')), | ||
Adrian Buehlmann
|
r14306 | ('l', 'logfile', '', | ||
_('read collapse commit message from file'), _('FILE')), | ||||
('', 'keep', False, _('keep original changesets')), | ||||
('', 'keepbranches', False, _('keep original branch names')), | ||||
Pierre-Yves David
|
r17005 | ('D', 'detach', False, _('(DEPRECATED)')), | ||
David Soria Parra
|
r22382 | ('i', 'interactive', False, _('(DEPRECATED)')), | ||
Adrian Buehlmann
|
r14306 | ('t', 'tool', '', _('specify merge tool')), | ||
('c', 'continue', False, _('continue an interrupted rebase')), | ||||
('a', 'abort', False, _('abort an interrupted rebase'))] + | ||||
templateopts, | ||||
Patrick Mezard
|
r17325 | _('[-s REV | -b REV] [-d REV] [OPTION]')) | ||
Stefano Tortarolo
|
r6906 | def rebase(ui, repo, **opts): | ||
"""move changeset (and descendants) to a different branch | ||||
Martin Geisler
|
r7999 | Rebase uses repeated merging to graft changesets from one part of | ||
Greg Ward
|
r10646 | history (the source) onto another (the destination). This can be | ||
Martin Geisler
|
r11188 | useful for linearizing *local* changes relative to a master | ||
Greg Ward
|
r10646 | development tree. | ||
Martin Geisler
|
r11188 | You should not rebase changesets that have already been shared | ||
with others. Doing so will force everybody else to perform the | ||||
same rebase or they will end up with duplicated changesets after | ||||
pulling in your rebased changesets. | ||||
Kevin Bullock
|
r18516 | In its default configuration, Mercurial will prevent you from | ||
rebasing published changes. See :hg:`help phases` for details. | ||||
Greg Ward
|
r10646 | If you don't specify a destination changeset (``-d/--dest``), | ||
Matt Mackall
|
r19398 | rebase uses the current branch tip as the destination. (The | ||
destination changeset is not modified by rebasing, but new | ||||
changesets are added as its descendants.) | ||||
Greg Ward
|
r10646 | |||
You can specify which changesets to rebase in two ways: as a | ||||
Martin Geisler
|
r10659 | "source" changeset or as a "base" changeset. Both are shorthand | ||
for a topologically related set of changesets (the "source | ||||
branch"). If you specify source (``-s/--source``), rebase will | ||||
rebase that changeset and all of its descendants onto dest. If you | ||||
specify base (``-b/--base``), rebase will select ancestors of base | ||||
back to but not including the common ancestor with dest. Thus, | ||||
``-b`` is less precise but more convenient than ``-s``: you can | ||||
specify any changeset in the source branch, and rebase will select | ||||
the whole branch. If you specify neither ``-s`` nor ``-b``, rebase | ||||
uses the parent of the working directory as the base. | ||||
Greg Ward
|
r10646 | |||
Pierre-Yves David
|
r18518 | For advanced usage, a third way is available through the ``--rev`` | ||
option. It allows you to specify an arbitrary set of changesets to | ||||
rebase. Descendants of revs you specify with this option are not | ||||
automatically included in the rebase. | ||||
Greg Ward
|
r10646 | By default, rebase recreates the changesets in the source branch | ||
as descendants of dest and then destroys the originals. Use | ||||
``--keep`` to preserve the original source changesets. Some | ||||
changesets in the source branch (e.g. merges from the destination | ||||
branch) may be dropped if they no longer contribute any change. | ||||
One result of the rules for selecting the destination changeset | ||||
and source branch is that, unlike ``merge``, rebase will do | ||||
Matt Mackall
|
r19398 | nothing if you are at the branch tip of a named branch | ||
Greg Ward
|
r10646 | with two heads. You need to explicitly specify source and/or | ||
destination (or ``update`` to the other head, if it's the head of | ||||
the intended source branch). | ||||
Stefano Tortarolo
|
r6906 | |||
Martin Geisler
|
r7999 | If a rebase is interrupted to manually resolve a merge, it can be | ||
Martin Geisler
|
r8076 | continued with --continue/-c or aborted with --abort/-a. | ||
Matt Mackall
|
r11205 | |||
Matt Mackall
|
r22790 | .. container:: verbose | ||
Examples: | ||||
- move "local changes" (current commit back to branching point) | ||||
to the current branch tip after a pull:: | ||||
hg rebase | ||||
- move a single changeset to the stable branch:: | ||||
hg rebase -r 5f493448 -d stable | ||||
- splice a commit and all its descendants onto another part of history:: | ||||
hg rebase --source c0c3 --dest 4cf9 | ||||
- rebase everything on a branch marked by a bookmark onto the | ||||
default branch:: | ||||
hg rebase --base myfeature --dest default | ||||
- collapse a sequence of changes into a single commit:: | ||||
hg rebase --collapse -r 1520:1525 -d . | ||||
- move a named branch while preserving its name:: | ||||
hg rebase -r "branch(featureX)" -d 1.3 --keepbranches | ||||
FUJIWARA Katsunori
|
r19971 | Returns 0 on success, 1 if nothing to rebase or there are | ||
unresolved conflicts. | ||||
Matt Mackall
|
r22790 | |||
Stefano Tortarolo
|
r6906 | """ | ||
Benoit Boissinot
|
r7280 | originalwd = target = None | ||
Durham Goode
|
r18755 | activebookmark = None | ||
Stefano Tortarolo
|
r6906 | external = nullrev | ||
Benoit Boissinot
|
r8454 | state = {} | ||
skipped = set() | ||||
Stefano Tortarolo
|
r10351 | targetancestors = set() | ||
Stefano Tortarolo
|
r6906 | |||
Matt Mackall
|
r15219 | |||
Stefano Tortarolo
|
r6906 | lock = wlock = None | ||
try: | ||||
Mads Kiilerich
|
r15874 | wlock = repo.wlock() | ||
Stefano Tortarolo
|
r6906 | lock = repo.lock() | ||
# Validate input and define rebasing points | ||||
destf = opts.get('dest', None) | ||||
srcf = opts.get('source', None) | ||||
basef = opts.get('base', None) | ||||
Pierre-Yves David
|
r15270 | revf = opts.get('rev', []) | ||
Stefano Tortarolo
|
r6906 | contf = opts.get('continue') | ||
abortf = opts.get('abort') | ||||
collapsef = opts.get('collapse', False) | ||||
Idan Kamara
|
r14635 | collapsemsg = cmdutil.logmessage(ui, opts) | ||
Augie Fackler
|
r19860 | e = opts.get('extrafn') # internal, used by e.g. hgsubversion | ||
Augie Fackler
|
r19861 | extrafns = [_savegraft] | ||
Augie Fackler
|
r19860 | if e: | ||
extrafns = [e] | ||||
Stefano Tortarolo
|
r7952 | keepf = opts.get('keep', False) | ||
keepbranchesf = opts.get('keepbranches', False) | ||||
Stefano Tortarolo
|
r10677 | # keepopen is not meant for use on the command line, but by | ||
# other extensions | ||||
keepopen = opts.get('keepopen', False) | ||||
Augie Fackler
|
r7468 | |||
David Soria Parra
|
r22382 | if opts.get('interactive'): | ||
msg = _("interactive history editing is supported by the " | ||||
"'histedit' extension (see 'hg help histedit')") | ||||
raise util.Abort(msg) | ||||
Radomir Dopieralski
|
r13661 | if collapsemsg and not collapsef: | ||
raise util.Abort( | ||||
_('message can only be specified with collapse')) | ||||
Stefano Tortarolo
|
r6906 | if contf or abortf: | ||
if contf and abortf: | ||||
Matt Mackall
|
r11285 | raise util.Abort(_('cannot use both abort and continue')) | ||
Stefano Tortarolo
|
r6906 | if collapsef: | ||
Matt Mackall
|
r11285 | raise util.Abort( | ||
_('cannot use collapse with continue or abort')) | ||||
Martin Geisler
|
r8117 | if srcf or basef or destf: | ||
Matt Mackall
|
r11285 | raise util.Abort( | ||
Stefano Tortarolo
|
r6906 | _('abort and continue do not allow specifying revisions')) | ||
Stefano Tortarolo
|
r13856 | if opts.get('tool', False): | ||
ui.warn(_('tool option will be ignored\n')) | ||||
Stefano Tortarolo
|
r6906 | |||
FUJIWARA Katsunori
|
r19848 | try: | ||
(originalwd, target, state, skipped, collapsef, keepf, | ||||
keepbranchesf, external, activebookmark) = restorestatus(repo) | ||||
except error.RepoLookupError: | ||||
if abortf: | ||||
clearstatus(repo) | ||||
repo.ui.warn(_('rebase aborted (no revision is removed,' | ||||
' only broken state is cleared)\n')) | ||||
return 0 | ||||
else: | ||||
msg = _('cannot continue inconsistent rebase') | ||||
Simon Heimberg
|
r20313 | hint = _('use "hg rebase --abort" to clear broken state') | ||
FUJIWARA Katsunori
|
r19848 | raise util.Abort(msg, hint=hint) | ||
Stefano Tortarolo
|
r6906 | if abortf: | ||
Matt Mackall
|
r11205 | return abort(repo, originalwd, target, state) | ||
Stefano Tortarolo
|
r6906 | else: | ||
if srcf and basef: | ||||
Matt Mackall
|
r11285 | raise util.Abort(_('cannot specify both a ' | ||
Pierre-Yves David
|
r15270 | 'source and a base')) | ||
if revf and basef: | ||||
Wagner Bruna
|
r15289 | raise util.Abort(_('cannot specify both a ' | ||
Matt Mackall
|
r11285 | 'revision and a base')) | ||
Pierre-Yves David
|
r15270 | if revf and srcf: | ||
Wagner Bruna
|
r15289 | raise util.Abort(_('cannot specify both a ' | ||
Pierre-Yves David
|
r15270 | 'revision and a source')) | ||
Stefano Tortarolo
|
r10352 | |||
Matt Mackall
|
r19478 | cmdutil.checkunfinished(repo) | ||
Matt Mackall
|
r14289 | cmdutil.bailifchanged(repo) | ||
Pierre-Yves David
|
r15267 | |||
if not destf: | ||||
Pierre-Yves David
|
r15270 | # Destination defaults to the latest revision in the | ||
# current branch | ||||
Pierre-Yves David
|
r15267 | branch = repo[None].branch() | ||
dest = repo[branch] | ||||
else: | ||||
Patrick Mezard
|
r16566 | dest = scmutil.revsingle(repo, destf) | ||
Pierre-Yves David
|
r15267 | |||
Matt Mackall
|
r15271 | if revf: | ||
Bryan O'Sullivan
|
r19641 | rebaseset = scmutil.revrange(repo, revf) | ||
Mads Kiilerich
|
r20247 | if not rebaseset: | ||
Julien Cristau
|
r21197 | ui.status(_('empty "rev" revision set - ' | ||
'nothing to rebase\n')) | ||||
return 1 | ||||
Matt Mackall
|
r15271 | elif srcf: | ||
Steven Brown
|
r15800 | src = scmutil.revrange(repo, [srcf]) | ||
Mads Kiilerich
|
r20248 | if not src: | ||
Mads Kiilerich
|
r21210 | ui.status(_('empty "source" revision set - ' | ||
'nothing to rebase\n')) | ||||
return 1 | ||||
Matt Mackall
|
r15801 | rebaseset = repo.revs('(%ld)::', src) | ||
Mads Kiilerich
|
r20248 | assert rebaseset | ||
Pierre-Yves David
|
r15267 | else: | ||
Steven Brown
|
r15800 | base = scmutil.revrange(repo, [basef or '.']) | ||
Mads Kiilerich
|
r20249 | if not base: | ||
Mads Kiilerich
|
r21210 | ui.status(_('empty "base" revision set - ' | ||
"can't compute rebase set\n")) | ||||
return 1 | ||||
Durham Goode
|
r23072 | commonanc = repo.revs('ancestor(%ld, %d)', base, dest).first() | ||
Durham Goode
|
r23246 | if commonanc is not None: | ||
rebaseset = repo.revs('(%d::(%ld) - %d)::', | ||||
commonanc, base, commonanc) | ||||
else: | ||||
rebaseset = [] | ||||
Mads Kiilerich
|
r20249 | if not rebaseset: | ||
Pierre-Yves David
|
r22823 | # transform to list because smartsets are not comparable to | ||
Mads Kiilerich
|
r23139 | # lists. This should be improved to honor laziness of | ||
Pierre-Yves David
|
r22823 | # smartset. | ||
if list(base) == [dest.rev()]: | ||||
Mads Kiilerich
|
r20249 | if basef: | ||
ui.status(_('nothing to rebase - %s is both "base"' | ||||
' and destination\n') % dest) | ||||
else: | ||||
ui.status(_('nothing to rebase - working directory ' | ||||
'parent is also destination\n')) | ||||
elif not repo.revs('%ld - ::%d', base, dest): | ||||
if basef: | ||||
ui.status(_('nothing to rebase - "base" %s is ' | ||||
'already an ancestor of destination ' | ||||
'%s\n') % | ||||
('+'.join(str(repo[r]) for r in base), | ||||
dest)) | ||||
else: | ||||
ui.status(_('nothing to rebase - working ' | ||||
'directory parent is already an ' | ||||
'ancestor of destination %s\n') % dest) | ||||
else: # can it happen? | ||||
ui.status(_('nothing to rebase from %s to %s\n') % | ||||
('+'.join(str(repo[r]) for r in base), dest)) | ||||
return 1 | ||||
Matt Mackall
|
r15271 | |||
Durham Goode
|
r22952 | allowunstable = obsolete.isenabled(repo, obsolete.allowunstableopt) | ||
if (not (keepf or allowunstable) | ||||
Pierre-Yves David
|
r18269 | and repo.revs('first(children(%ld) - %ld)', | ||
Pierre-Yves David
|
r18164 | rebaseset, rebaseset)): | ||
Matt Mackall
|
r15272 | raise util.Abort( | ||
_("can't remove original changesets with" | ||||
" unrebased descendants"), | ||||
hint=_('use --keep to keep original changesets')) | ||||
Mads Kiilerich
|
r20250 | result = buildstate(repo, dest, rebaseset, collapsef) | ||
Stefano Tortarolo
|
r10351 | if not result: | ||
# Empty state built, nothing to rebase | ||||
Martin Geisler
|
r8615 | ui.status(_('nothing to rebase\n')) | ||
Matt Mackall
|
r11205 | return 1 | ||
Mads Kiilerich
|
r20250 | |||
root = min(rebaseset) | ||||
if not keepf and not repo[root].mutable(): | ||||
Siddharth Agarwal
|
r19059 | raise util.Abort(_("can't rebase immutable changeset %s") | ||
% repo[root], | ||||
hint=_('see hg help phases for details')) | ||||
Mads Kiilerich
|
r20250 | |||
originalwd, target, state = result | ||||
if collapsef: | ||||
targetancestors = repo.changelog.ancestors([target], | ||||
inclusive=True) | ||||
external = externalparent(repo, state, targetancestors) | ||||
Stefano Tortarolo
|
r6906 | |||
Mads Kiilerich
|
r21027 | if dest.closesbranch() and not keepbranchesf: | ||
ui.status(_('reopening closed branch head %s\n') % dest) | ||||
Stefano Tortarolo
|
r7952 | if keepbranchesf: | ||
Augie Fackler
|
r19860 | # insert _savebranch at the start of extrafns so if | ||
# there's a user-provided extrafn it can clobber branch if | ||||
# desired | ||||
extrafns.insert(0, _savebranch) | ||||
Stefano Tortarolo
|
r14897 | if collapsef: | ||
branches = set() | ||||
for rev in state: | ||||
branches.add(repo[rev].branch()) | ||||
if len(branches) > 1: | ||||
Augie Fackler
|
r14917 | raise util.Abort(_('cannot collapse multiple named ' | ||
Stefano Tortarolo
|
r14897 | 'branches')) | ||
Stefano Tortarolo
|
r6906 | # Rebase | ||
Stefano Tortarolo
|
r10351 | if not targetancestors: | ||
Siddharth Agarwal
|
r18093 | targetancestors = repo.changelog.ancestors([target], inclusive=True) | ||
Stefano Tortarolo
|
r6906 | |||
Stefano Tortarolo
|
r14884 | # Keep track of the current bookmarks in order to reset them later | ||
currentbookmarks = repo._bookmarks.copy() | ||||
Durham Goode
|
r18755 | activebookmark = activebookmark or repo._bookmarkcurrent | ||
David Schleimer
|
r17046 | if activebookmark: | ||
bookmarks.unsetcurrent(repo) | ||||
Stefano Tortarolo
|
r14884 | |||
Augie Fackler
|
r19860 | extrafn = _makeextrafn(extrafns) | ||
timeless
|
r11729 | sortedstate = sorted(state) | ||
total = len(sortedstate) | ||||
pos = 0 | ||||
for rev in sortedstate: | ||||
Mads Kiilerich
|
r23517 | ctx = repo[rev] | ||
desc = '%d:%s "%s"' % (ctx.rev(), ctx, | ||||
ctx.description().split('\n', 1)[0]) | ||||
names = repo.nodetags(ctx.node()) + repo.nodebookmarks(ctx.node()) | ||||
if names: | ||||
desc += ' (%s)' % ' '.join(names) | ||||
timeless
|
r11729 | pos += 1 | ||
Pierre-Yves David
|
r23490 | if state[rev] == revtodo: | ||
Mads Kiilerich
|
r23517 | ui.status(_('rebasing %s\n') % desc) | ||
ui.progress(_("rebasing"), pos, ("%d:%s" % (rev, ctx)), | ||||
timeless
|
r12744 | _('changesets'), total) | ||
Mads Kiilerich
|
r23484 | p1, p2, base = defineparents(repo, rev, target, state, | ||
targetancestors) | ||||
Stefano Tortarolo
|
r7952 | storestatus(repo, originalwd, target, state, collapsef, keepf, | ||
Durham Goode
|
r18755 | keepbranchesf, external, activebookmark) | ||
Stefano Tortarolo
|
r10351 | if len(repo.parents()) == 2: | ||
repo.ui.debug('resuming interrupted rebase\n') | ||||
else: | ||||
Stefano Tortarolo
|
r13856 | try: | ||
Mads Kiilerich
|
r20790 | ui.setconfig('ui', 'forcemerge', opts.get('tool', ''), | ||
'rebase') | ||||
Mads Kiilerich
|
r23484 | stats = rebasenode(repo, rev, p1, base, state, | ||
collapsef, target) | ||||
Stefano Tortarolo
|
r13856 | if stats and stats[3] > 0: | ||
Augie Fackler
|
r18933 | raise error.InterventionRequired( | ||
_('unresolved conflicts (see hg ' | ||||
'resolve, then hg rebase --continue)')) | ||||
Stefano Tortarolo
|
r13856 | finally: | ||
Mads Kiilerich
|
r20790 | ui.setconfig('ui', 'forcemerge', '', 'rebase') | ||
Stefano Tortarolo
|
r10351 | if not collapsef: | ||
Mads Kiilerich
|
r23461 | merging = p2 != nullrev | ||
FUJIWARA Katsunori
|
r22251 | editform = cmdutil.mergeeditform(merging, 'rebase') | ||
editor = cmdutil.getcommiteditor(editform=editform, **opts) | ||||
Mads Kiilerich
|
r23459 | newnode = concludenode(repo, rev, p1, p2, extrafn=extrafn, | ||
editor=editor) | ||||
Stefano Tortarolo
|
r10351 | else: | ||
# Skip commit if we are collapsing | ||||
Durham Goode
|
r22405 | repo.dirstate.beginparentchange() | ||
Patrick Mezard
|
r16551 | repo.setparents(repo[p1].node()) | ||
Durham Goode
|
r22405 | repo.dirstate.endparentchange() | ||
Mads Kiilerich
|
r23459 | newnode = None | ||
Stefano Tortarolo
|
r10351 | # Update the state | ||
Mads Kiilerich
|
r23459 | if newnode is not None: | ||
state[rev] = repo[newnode].rev() | ||||
Mads Kiilerich
|
r23519 | ui.debug('rebased as %s\n' % short(newnode)) | ||
Stefano Tortarolo
|
r10351 | else: | ||
Mads Kiilerich
|
r23518 | ui.warn(_('note: rebase of %d:%s created no changes ' | ||
'to commit\n') % (rev, ctx)) | ||||
Stefano Tortarolo
|
r10351 | if not collapsef: | ||
skipped.add(rev) | ||||
state[rev] = p1 | ||||
Mads Kiilerich
|
r23519 | ui.debug('next revision set to %s\n' % p1) | ||
Mads Kiilerich
|
r23517 | elif state[rev] == nullmerge: | ||
Mads Kiilerich
|
r23519 | ui.debug('ignoring null merge rebase of %s\n' % rev) | ||
Mads Kiilerich
|
r23517 | elif state[rev] == revignored: | ||
ui.status(_('not rebasing ignored %s\n') % desc) | ||||
else: | ||||
ui.status(_('already rebased %s as %s\n') % | ||||
(desc, repo[state[rev]])) | ||||
Stefano Tortarolo
|
r10351 | |||
timeless
|
r11729 | ui.progress(_('rebasing'), None) | ||
Stefano Tortarolo
|
r6906 | ui.note(_('rebase merging completed\n')) | ||
Stefano Tortarolo
|
r10677 | if collapsef and not keepopen: | ||
Mads Kiilerich
|
r23484 | p1, p2, _base = defineparents(repo, min(state), target, | ||
state, targetancestors) | ||||
FUJIWARA Katsunori
|
r22206 | editopt = opts.get('edit') | ||
editform = 'rebase.collapse' | ||||
Radomir Dopieralski
|
r13661 | if collapsemsg: | ||
commitmsg = collapsemsg | ||||
else: | ||||
commitmsg = 'Collapsed revision' | ||||
for rebased in state: | ||||
Pierre-Yves David
|
r18446 | if rebased not in skipped and state[rebased] > nullmerge: | ||
Radomir Dopieralski
|
r13661 | commitmsg += '\n* %s' % repo[rebased].description() | ||
FUJIWARA Katsunori
|
r22206 | editopt = True | ||
editor = cmdutil.getcommiteditor(edit=editopt, editform=editform) | ||||
Mads Kiilerich
|
r23459 | newnode = concludenode(repo, rev, p1, external, commitmsg=commitmsg, | ||
extrafn=extrafn, editor=editor) | ||||
Mads Kiilerich
|
r23460 | if newnode is None: | ||
newrev = target | ||||
else: | ||||
newrev = repo[newnode].rev() | ||||
Durham Goode
|
r19986 | for oldrev in state.iterkeys(): | ||
if state[oldrev] > nullmerge: | ||||
Mads Kiilerich
|
r23460 | state[oldrev] = newrev | ||
Stefano Tortarolo
|
r6906 | |||
if 'qtip' in repo.tags(): | ||||
updatemq(repo, state, skipped, **opts) | ||||
Stefano Tortarolo
|
r14884 | if currentbookmarks: | ||
# Nodeids are needed to reset bookmarks | ||||
nstate = {} | ||||
for k, v in state.iteritems(): | ||||
Pierre-Yves David
|
r18446 | if v > nullmerge: | ||
Stefano Tortarolo
|
r14884 | nstate[repo[k].node()] = repo[v].node() | ||
Siddharth Agarwal
|
r18549 | # XXX this is the same as dest.node() for the non-continue path -- | ||
# this should probably be cleaned up | ||||
targetnode = repo[target].node() | ||||
Stefano Tortarolo
|
r14884 | |||
Pierre-Yves David
|
r19925 | # restore original working directory | ||
# (we do this before stripping) | ||||
newwd = state.get(originalwd, originalwd) | ||||
Pierre-Yves David
|
r23440 | if newwd < 0: | ||
# original directory is a parent of rebase set root or ignored | ||||
newwd = originalwd | ||||
Pierre-Yves David
|
r19925 | if newwd not in [c.rev() for c in repo[None].parents()]: | ||
ui.note(_("update back to initial working directory parent\n")) | ||||
hg.updaterepo(repo, newwd, False) | ||||
Stefano Tortarolo
|
r7952 | if not keepf: | ||
Pierre-Yves David
|
r17613 | collapsedas = None | ||
if collapsef: | ||||
Mads Kiilerich
|
r23459 | collapsedas = newnode | ||
Pierre-Yves David
|
r18444 | clearrebased(ui, repo, state, skipped, collapsedas) | ||
Stefano Tortarolo
|
r6906 | |||
Stefano Tortarolo
|
r14884 | if currentbookmarks: | ||
Siddharth Agarwal
|
r18549 | updatebookmarks(repo, targetnode, nstate, currentbookmarks) | ||
Yuya Nishihara
|
r20523 | if activebookmark not in repo._bookmarks: | ||
# active bookmark was divergent one and has been deleted | ||||
activebookmark = None | ||||
Stefano Tortarolo
|
r14884 | |||
Stefano Tortarolo
|
r6906 | clearstatus(repo) | ||
Matt Mackall
|
r11203 | ui.note(_("rebase completed\n")) | ||
Mads Kiilerich
|
r18386 | util.unlinkpath(repo.sjoin('undo'), ignoremissing=True) | ||
Stefano Tortarolo
|
r6906 | if skipped: | ||
ui.note(_("%d revisions have been skipped\n") % len(skipped)) | ||||
David Schleimer
|
r17046 | |||
if (activebookmark and | ||||
Pierre-Yves David
|
r19926 | repo['.'].node() == repo._bookmarks[activebookmark]): | ||
David Schleimer
|
r17046 | bookmarks.setcurrent(repo, activebookmark) | ||
Stefano Tortarolo
|
r6906 | finally: | ||
Ronny Pfannschmidt
|
r8112 | release(lock, wlock) | ||
Stefano Tortarolo
|
r6906 | |||
Mads Kiilerich
|
r19955 | def externalparent(repo, state, targetancestors): | ||
"""Return the revision that should be used as the second parent | ||||
when the revisions in state is collapsed on top of targetancestors. | ||||
Abort if there is more than one parent. | ||||
Stefano Tortarolo
|
r10351 | """ | ||
Mads Kiilerich
|
r19955 | parents = set() | ||
Stefano Tortarolo
|
r10351 | source = min(state) | ||
for rev in state: | ||||
if rev == source: | ||||
continue | ||||
for p in repo[rev].parents(): | ||||
if (p.rev() not in state | ||||
and p.rev() not in targetancestors): | ||||
Mads Kiilerich
|
r19955 | parents.add(p.rev()) | ||
if not parents: | ||||
return nullrev | ||||
if len(parents) == 1: | ||||
return parents.pop() | ||||
Mads Kiilerich
|
r19956 | raise util.Abort(_('unable to collapse on top of %s, there is more ' | ||
'than one external parent: %s') % | ||||
(max(targetancestors), | ||||
', '.join(str(p) for p in sorted(parents)))) | ||||
Stefano Tortarolo
|
r10351 | |||
Matt Mackall
|
r15219 | def concludenode(repo, rev, p1, p2, commitmsg=None, editor=None, extrafn=None): | ||
Mads Kiilerich
|
r23484 | '''Commit the wd changes with parents p1 and p2. Reuse commit info from rev | ||
but also store useful information in extra. | ||||
Mads Kiilerich
|
r23459 | Return node of committed revision.''' | ||
Stefano Tortarolo
|
r6906 | try: | ||
Durham Goode
|
r22405 | repo.dirstate.beginparentchange() | ||
Patrick Mezard
|
r16551 | repo.setparents(repo[p1].node(), repo[p2].node()) | ||
Durham Goode
|
r22405 | repo.dirstate.endparentchange() | ||
Nicolas Dumazet
|
r11537 | ctx = repo[rev] | ||
Stefano Tortarolo
|
r10351 | if commitmsg is None: | ||
Nicolas Dumazet
|
r11537 | commitmsg = ctx.description() | ||
Patrick Mezard
|
r10762 | extra = {'rebase_source': ctx.hex()} | ||
if extrafn: | ||||
extrafn(ctx, extra) | ||||
Pierre-Yves David
|
r22038 | |||
backup = repo.ui.backupconfig('phases', 'new-commit') | ||||
try: | ||||
targetphase = max(ctx.phase(), phases.draft) | ||||
repo.ui.setconfig('phases', 'new-commit', targetphase, 'rebase') | ||||
# Commit might fail if unresolved files exist | ||||
Mads Kiilerich
|
r23459 | newnode = repo.commit(text=commitmsg, user=ctx.user(), | ||
date=ctx.date(), extra=extra, editor=editor) | ||||
Pierre-Yves David
|
r22038 | finally: | ||
repo.ui.restoreconfig(backup) | ||||
Mads Kiilerich
|
r23459 | repo.dirstate.setbranch(repo[newnode].branch()) | ||
return newnode | ||||
Stefano Tortarolo
|
r6906 | except util.Abort: | ||
# Invalidate the previous setparents | ||||
repo.dirstate.invalidate() | ||||
raise | ||||
Mads Kiilerich
|
r23484 | def rebasenode(repo, rev, p1, base, state, collapse, target): | ||
'Rebase a single revision rev on top of p1 using base as merge ancestor' | ||||
Stefano Tortarolo
|
r6906 | # Merge phase | ||
Stefano Tortarolo
|
r10351 | # Update to target and merge it with local | ||
Mads Kiilerich
|
r23461 | if repo['.'].rev() != p1: | ||
repo.ui.debug(" update to %d:%s\n" % (p1, repo[p1])) | ||||
Stefano Tortarolo
|
r10351 | merge.update(repo, p1, False, True, False) | ||
Stefano Tortarolo
|
r6906 | else: | ||
Stefano Tortarolo
|
r10351 | repo.ui.debug(" already in target\n") | ||
repo.dirstate.write() | ||||
Mads Kiilerich
|
r23461 | repo.ui.debug(" merge against %d:%s\n" % (rev, repo[rev])) | ||
Pierre-Yves David
|
r19969 | if base is not None: | ||
Mads Kiilerich
|
r23461 | repo.ui.debug(" detach base %d:%s\n" % (base, repo[base])) | ||
Patrick Mezard
|
r16696 | # When collapsing in-place, the parent is the common ancestor, we | ||
# have to allow merging with it. | ||||
Matt Mackall
|
r22905 | stats = merge.update(repo, rev, True, True, False, base, collapse, | ||
Durham Goode
|
r21526 | labels=['dest', 'source']) | ||
Matt Mackall
|
r22905 | if collapse: | ||
copies.duplicatecopies(repo, rev, target) | ||||
else: | ||||
# If we're not using --collapse, we need to | ||||
# duplicate copies between the revision we're | ||||
# rebasing and its first parent, but *not* | ||||
# duplicate any copies that have already been | ||||
# performed in the destination. | ||||
p1rev = repo[rev].p1().rev() | ||||
copies.duplicatecopies(repo, rev, p1rev, skiprev=target) | ||||
return stats | ||||
Dirkjan Ochtman
|
r6923 | |||
Pierre-Yves David
|
r18447 | def nearestrebased(repo, rev, state): | ||
"""return the nearest ancestors of rev in the rebase result""" | ||||
rebased = [r for r in state if state[r] > nullmerge] | ||||
candidates = repo.revs('max(%ld and (::%d))', rebased, rev) | ||||
if candidates: | ||||
Pierre-Yves David
|
r22820 | return state[candidates.first()] | ||
Pierre-Yves David
|
r18447 | else: | ||
return None | ||||
Stefano Tortarolo
|
r6906 | def defineparents(repo, rev, target, state, targetancestors): | ||
'Return the new parent relationship of the revision that will be rebased' | ||||
parents = repo[rev].parents() | ||||
p1 = p2 = nullrev | ||||
Matt Mackall
|
r22906 | p1n = parents[0].rev() | ||
if p1n in targetancestors: | ||||
Stefano Tortarolo
|
r6906 | p1 = target | ||
Matt Mackall
|
r22906 | elif p1n in state: | ||
if state[p1n] == nullmerge: | ||||
Stefano Tortarolo
|
r10352 | p1 = target | ||
Matt Mackall
|
r22906 | elif state[p1n] == revignored: | ||
p1 = nearestrebased(repo, p1n, state) | ||||
Pierre-Yves David
|
r18447 | if p1 is None: | ||
p1 = target | ||||
Stefano Tortarolo
|
r10352 | else: | ||
Matt Mackall
|
r22906 | p1 = state[p1n] | ||
else: # p1n external | ||||
Stefano Tortarolo
|
r6906 | p1 = target | ||
Matt Mackall
|
r22906 | p2 = p1n | ||
Stefano Tortarolo
|
r6906 | |||
if len(parents) == 2 and parents[1].rev() not in targetancestors: | ||||
Matt Mackall
|
r22906 | p2n = parents[1].rev() | ||
Stefano Tortarolo
|
r6906 | # interesting second parent | ||
Matt Mackall
|
r22906 | if p2n in state: | ||
if p1 == target: # p1n in targetancestors or external | ||||
p1 = state[p2n] | ||||
elif state[p2n] == revignored: | ||||
p2 = nearestrebased(repo, p2n, state) | ||||
Pierre-Yves David
|
r18447 | if p2 is None: | ||
# no ancestors rebased yet, detach | ||||
p2 = target | ||||
Stefano Tortarolo
|
r6906 | else: | ||
Matt Mackall
|
r22906 | p2 = state[p2n] | ||
else: # p2n external | ||||
if p2 != nullrev: # p1n external too => rev is a merged revision | ||||
Stefano Tortarolo
|
r6906 | raise util.Abort(_('cannot use revision %d as base, result ' | ||
'would have 3 parents') % rev) | ||||
Matt Mackall
|
r22906 | p2 = p2n | ||
Stefano Tortarolo
|
r10351 | repo.ui.debug(" future parents are %d and %d\n" % | ||
(repo[p1].rev(), repo[p2].rev())) | ||||
Mads Kiilerich
|
r23484 | |||
if rev == min(state): | ||||
# Case (1) initial changeset of a non-detaching rebase. | ||||
# Let the merge mechanism find the base itself. | ||||
base = None | ||||
elif not repo[rev].p2(): | ||||
# Case (2) detaching the node with a single parent, use this parent | ||||
base = repo[rev].p1().rev() | ||||
else: | ||||
# In case of merge, we need to pick the right parent as merge base. | ||||
# | ||||
# Imagine we have: | ||||
# - M: currently rebase revision in this step | ||||
# - A: one parent of M | ||||
# - B: second parent of M | ||||
# - D: destination of this merge step (p1 var) | ||||
# | ||||
# If we are rebasing on D, D is the successors of A or B. The right | ||||
# merge base is the one D succeed to. We pretend it is B for the rest | ||||
# of this comment | ||||
# | ||||
# If we pick B as the base, the merge involves: | ||||
# - changes from B to M (actual changeset payload) | ||||
# - changes from B to D (induced by rebase) as D is a rebased | ||||
# version of B) | ||||
# Which exactly represent the rebase operation. | ||||
# | ||||
# If we pick the A as the base, the merge involves | ||||
# - changes from A to M (actual changeset payload) | ||||
# - changes from A to D (with include changes between unrelated A and B | ||||
# plus changes induced by rebase) | ||||
# Which does not represent anything sensible and creates a lot of | ||||
# conflicts. | ||||
for p in repo[rev].parents(): | ||||
if state.get(p.rev()) == p1: | ||||
base = p.rev() | ||||
break | ||||
else: # fallback when base not found | ||||
base = None | ||||
# Raise because this function is called wrong (see issue 4106) | ||||
raise AssertionError('no base found to rebase on ' | ||||
'(defineparents called wrong)') | ||||
return p1, p2, base | ||||
Stefano Tortarolo
|
r6906 | |||
Stefano Tortarolo
|
r7955 | def isagitpatch(repo, patchname): | ||
'Return true if the given patch is in git format' | ||||
mqpatch = os.path.join(repo.mq.path, patchname) | ||||
for line in patch.linereader(file(mqpatch, 'rb')): | ||||
if line.startswith('diff --git'): | ||||
return True | ||||
return False | ||||
Stefano Tortarolo
|
r6906 | def updatemq(repo, state, skipped, **opts): | ||
'Update rebased mq patches - finalize and then import them' | ||||
mqrebase = {} | ||||
Nicolas Dumazet
|
r11537 | mq = repo.mq | ||
Adrian Buehlmann
|
r14572 | original_series = mq.fullseries[:] | ||
Patrick Mezard
|
r16531 | skippedpatches = set() | ||
Stefano Tortarolo
|
r14497 | |||
Nicolas Dumazet
|
r11537 | for p in mq.applied: | ||
rev = repo[p.node].rev() | ||||
if rev in state: | ||||
Martin Geisler
|
r9467 | repo.ui.debug('revision %d is an mq patch (%s), finalize it.\n' % | ||
Nicolas Dumazet
|
r11537 | (rev, p.name)) | ||
mqrebase[rev] = (p.name, isagitpatch(repo, p.name)) | ||||
Patrick Mezard
|
r16531 | else: | ||
# Applied but not rebased, not sure this should happen | ||||
skippedpatches.add(p.name) | ||||
Stefano Tortarolo
|
r6906 | |||
if mqrebase: | ||||
Nicolas Dumazet
|
r11537 | mq.finish(repo, mqrebase.keys()) | ||
Stefano Tortarolo
|
r6906 | |||
# We must start import from the newest revision | ||||
Matt Mackall
|
r8210 | for rev in sorted(mqrebase, reverse=True): | ||
Stefano Tortarolo
|
r6906 | if rev not in skipped: | ||
Nicolas Dumazet
|
r11537 | name, isgit = mqrebase[rev] | ||
Mads Kiilerich
|
r23520 | repo.ui.note(_('updating mq patch %s to %s:%s\n') % | ||
(name, state[rev], repo[state[rev]])) | ||||
Nicolas Dumazet
|
r11537 | mq.qimport(repo, (), patchname=name, git=isgit, | ||
rev=[str(state[rev])]) | ||||
Patrick Mezard
|
r16531 | else: | ||
# Rebased and skipped | ||||
skippedpatches.add(mqrebase[rev][0]) | ||||
Stefano Tortarolo
|
r14497 | |||
Patrick Mezard
|
r16531 | # Patches were either applied and rebased and imported in | ||
# order, applied and removed or unapplied. Discard the removed | ||||
# ones while preserving the original series order and guards. | ||||
newseries = [s for s in original_series | ||||
if mq.guard_re.split(s, 1)[0] not in skippedpatches] | ||||
mq.fullseries[:] = newseries | ||||
mq.seriesdirty = True | ||||
Adrian Buehlmann
|
r14580 | mq.savedirty() | ||
Stefano Tortarolo
|
r6906 | |||
Siddharth Agarwal
|
r18549 | def updatebookmarks(repo, targetnode, nstate, originalbookmarks): | ||
Siddharth Agarwal
|
r18514 | 'Move bookmarks to their correct changesets, and delete divergent ones' | ||
Augie Fackler
|
r17922 | marks = repo._bookmarks | ||
Stefano Tortarolo
|
r14884 | for k, v in originalbookmarks.iteritems(): | ||
if v in nstate: | ||||
Siddharth Agarwal
|
r18512 | # update the bookmarks for revs that have moved | ||
marks[k] = nstate[v] | ||||
Siddharth Agarwal
|
r18549 | bookmarks.deletedivergent(repo, [targetnode], k) | ||
Stefano Tortarolo
|
r14884 | |||
Augie Fackler
|
r17922 | marks.write() | ||
Stefano Tortarolo
|
r14884 | |||
Stefano Tortarolo
|
r7952 | def storestatus(repo, originalwd, target, state, collapse, keep, keepbranches, | ||
Durham Goode
|
r18755 | external, activebookmark): | ||
Stefano Tortarolo
|
r6906 | 'Store the current status to allow recovery' | ||
f = repo.opener("rebasestate", "w") | ||||
f.write(repo[originalwd].hex() + '\n') | ||||
f.write(repo[target].hex() + '\n') | ||||
f.write(repo[external].hex() + '\n') | ||||
f.write('%d\n' % int(collapse)) | ||||
Stefano Tortarolo
|
r7952 | f.write('%d\n' % int(keep)) | ||
f.write('%d\n' % int(keepbranches)) | ||||
Durham Goode
|
r18755 | f.write('%s\n' % (activebookmark or '')) | ||
Dirkjan Ochtman
|
r7622 | for d, v in state.iteritems(): | ||
Stefano Tortarolo
|
r6906 | oldrev = repo[d].hex() | ||
Pierre-Yves David
|
r23491 | if v >= 0: | ||
Stefano Tortarolo
|
r15464 | newrev = repo[v].hex() | ||
Pierre-Yves David
|
r23491 | elif v == revtodo: | ||
# To maintain format compatibility, we have to use nullid. | ||||
# Please do remove this special case when upgrading the format. | ||||
newrev = hex(nullid) | ||||
Stefano Tortarolo
|
r15464 | else: | ||
newrev = v | ||||
Stefano Tortarolo
|
r6906 | f.write("%s:%s\n" % (oldrev, newrev)) | ||
f.close() | ||||
Martin Geisler
|
r9467 | repo.ui.debug('rebase status stored\n') | ||
Stefano Tortarolo
|
r6906 | |||
def clearstatus(repo): | ||||
'Remove the status files' | ||||
Mads Kiilerich
|
r18386 | util.unlinkpath(repo.join("rebasestate"), ignoremissing=True) | ||
Stefano Tortarolo
|
r6906 | |||
def restorestatus(repo): | ||||
'Restore a previously stored status' | ||||
try: | ||||
Matt Mackall
|
r20327 | keepbranches = None | ||
Stefano Tortarolo
|
r6906 | target = None | ||
collapse = False | ||||
external = nullrev | ||||
Durham Goode
|
r18755 | activebookmark = None | ||
Stefano Tortarolo
|
r6906 | state = {} | ||
f = repo.opener("rebasestate") | ||||
for i, l in enumerate(f.read().splitlines()): | ||||
if i == 0: | ||||
originalwd = repo[l].rev() | ||||
elif i == 1: | ||||
target = repo[l].rev() | ||||
elif i == 2: | ||||
external = repo[l].rev() | ||||
elif i == 3: | ||||
collapse = bool(int(l)) | ||||
Stefano Tortarolo
|
r7952 | elif i == 4: | ||
keep = bool(int(l)) | ||||
elif i == 5: | ||||
keepbranches = bool(int(l)) | ||||
Durham Goode
|
r18755 | elif i == 6 and not (len(l) == 81 and ':' in l): | ||
# line 6 is a recent addition, so for backwards compatibility | ||||
# check that the line doesn't look like the oldrev:newrev lines | ||||
activebookmark = l | ||||
Stefano Tortarolo
|
r6906 | else: | ||
oldrev, newrev = l.split(':') | ||||
Pierre-Yves David
|
r18447 | if newrev in (str(nullmerge), str(revignored)): | ||
state[repo[oldrev].rev()] = int(newrev) | ||||
Pierre-Yves David
|
r23491 | elif newrev == nullid: | ||
state[repo[oldrev].rev()] = revtodo | ||||
# Legacy compat special case | ||||
Pierre-Yves David
|
r18447 | else: | ||
Stefano Tortarolo
|
r15464 | state[repo[oldrev].rev()] = repo[newrev].rev() | ||
Matt Mackall
|
r20327 | |||
if keepbranches is None: | ||||
raise util.Abort(_('.hg/rebasestate is incomplete')) | ||||
Benoit Boissinot
|
r11843 | skipped = set() | ||
# recompute the set of skipped revs | ||||
if not collapse: | ||||
seen = set([target]) | ||||
for old, new in sorted(state.items()): | ||||
Pierre-Yves David
|
r23490 | if new != revtodo and new in seen: | ||
Benoit Boissinot
|
r11843 | skipped.add(old) | ||
seen.add(new) | ||||
Mads Kiilerich
|
r20546 | repo.ui.debug('computed skipped revs: %s\n' % | ||
(' '.join(str(r) for r in sorted(skipped)) or None)) | ||||
Martin Geisler
|
r9467 | repo.ui.debug('rebase status resumed\n') | ||
Benoit Boissinot
|
r11843 | return (originalwd, target, state, skipped, | ||
Durham Goode
|
r18755 | collapse, keep, keepbranches, external, activebookmark) | ||
Stefano Tortarolo
|
r6906 | except IOError, err: | ||
if err.errno != errno.ENOENT: | ||||
raise | ||||
raise util.Abort(_('no rebase in progress')) | ||||
Matt Mackall
|
r19516 | def inrebase(repo, originalwd, state): | ||
Mads Kiilerich
|
r19951 | '''check whether the working dir is in an interrupted rebase''' | ||
Matt Mackall
|
r19516 | parents = [p.rev() for p in repo.parents()] | ||
if originalwd in parents: | ||||
return True | ||||
for newrev in state.itervalues(): | ||||
if newrev in parents: | ||||
return True | ||||
return False | ||||
Stefano Tortarolo
|
r6906 | def abort(repo, originalwd, target, state): | ||
'Restore the repository to its original state' | ||||
Pierre-Yves David
|
r23489 | dstates = [s for s in state.values() if s >= 0] | ||
Dan Villiom Podlaski Christiansen
|
r17026 | immutable = [d for d in dstates if not repo[d].mutable()] | ||
Matt Mackall
|
r19518 | cleanup = True | ||
Dan Villiom Podlaski Christiansen
|
r17026 | if immutable: | ||
Matt Mackall
|
r19517 | repo.ui.warn(_("warning: can't clean up immutable changesets %s\n") | ||
% ', '.join(str(repo[r]) for r in immutable), | ||||
hint=_('see hg help phases for details')) | ||||
Matt Mackall
|
r19518 | cleanup = False | ||
Matt Mackall
|
r16280 | |||
descendants = set() | ||||
if dstates: | ||||
Bryan O'Sullivan
|
r16867 | descendants = set(repo.changelog.descendants(dstates)) | ||
Matt Mackall
|
r16280 | if descendants - set(dstates): | ||
Stefano Tortarolo
|
r6906 | repo.ui.warn(_("warning: new changesets detected on target branch, " | ||
Matt Mackall
|
r19518 | "can't strip\n")) | ||
cleanup = False | ||||
if cleanup: | ||||
Matt Mackall
|
r19516 | # Update away from the rebase if necessary | ||
Matt Mackall
|
r19518 | if inrebase(repo, originalwd, state): | ||
Mads Kiilerich
|
r23461 | merge.update(repo, originalwd, False, True, False) | ||
Matt Mackall
|
r19516 | |||
Stefano Tortarolo
|
r6906 | # Strip from the first rebased revision | ||
Pierre-Yves David
|
r23489 | rebased = filter(lambda x: x >= 0 and x != target, state.values()) | ||
Matt Mackall
|
r19518 | if rebased: | ||
Pierre-Yves David
|
r18424 | strippoints = [c.node() for c in repo.set('roots(%ld)', rebased)] | ||
Matt Mackall
|
r11201 | # no backup of rebased cset versions needed | ||
Pierre-Yves David
|
r18424 | repair.strip(repo.ui, repo, strippoints) | ||
Matt Mackall
|
r19518 | |||
clearstatus(repo) | ||||
repo.ui.warn(_('rebase aborted\n')) | ||||
return 0 | ||||
Stefano Tortarolo
|
r6906 | |||
Pierre-Yves David
|
r17005 | def buildstate(repo, dest, rebaseset, collapse): | ||
Pierre-Yves David
|
r15267 | '''Define which revisions are going to be rebased and where | ||
Stefano Tortarolo
|
r6906 | |||
Pierre-Yves David
|
r15267 | repo: repo | ||
dest: context | ||||
rebaseset: set of rev | ||||
Pierre-Yves David
|
r17005 | ''' | ||
Stefano Tortarolo
|
r6906 | |||
Greg Ward
|
r10672 | # This check isn't strictly necessary, since mq detects commits over an | ||
# applied patch. But it prevents messing up the working directory when | ||||
# a partially completed rebase is blocked by mq. | ||||
Pierre-Yves David
|
r15267 | if 'qtip' in repo.tags() and (dest.node() in | ||
Benoit Boissinot
|
r10678 | [s.node for s in repo.mq.applied]): | ||
Greg Ward
|
r10672 | raise util.Abort(_('cannot rebase onto an applied mq patch')) | ||
Pierre-Yves David
|
r15267 | roots = list(repo.set('roots(%ld)', rebaseset)) | ||
if not roots: | ||||
Pierre-Yves David
|
r15270 | raise util.Abort(_('no matching revisions')) | ||
Pierre-Yves David
|
r18424 | roots.sort() | ||
state = {} | ||||
detachset = set() | ||||
for root in roots: | ||||
commonbase = root.ancestor(dest) | ||||
if commonbase == root: | ||||
raise util.Abort(_('source is ancestor of destination')) | ||||
if commonbase == dest: | ||||
samebranch = root.branch() == dest.branch() | ||||
if not collapse and samebranch and root in dest.children(): | ||||
repo.ui.debug('source is a child of destination\n') | ||||
return None | ||||
Stefano Tortarolo
|
r6906 | |||
Mads Kiilerich
|
r20545 | repo.ui.debug('rebase onto %d starting from %s\n' % (dest, root)) | ||
Pierre-Yves David
|
r23490 | state.update(dict.fromkeys(rebaseset, revtodo)) | ||
Pierre-Yves David
|
r18424 | # Rebase tries to turn <dest> into a parent of <root> while | ||
# preserving the number of parents of rebased changesets: | ||||
# | ||||
# - A changeset with a single parent will always be rebased as a | ||||
# changeset with a single parent. | ||||
# | ||||
# - A merge will be rebased as merge unless its parents are both | ||||
# ancestors of <dest> or are themselves in the rebased set and | ||||
# pruned while rebased. | ||||
# | ||||
# If one parent of <root> is an ancestor of <dest>, the rebased | ||||
# version of this parent will be <dest>. This is always true with | ||||
# --base option. | ||||
# | ||||
# Otherwise, we need to *replace* the original parents with | ||||
# <dest>. This "detaches" the rebased set from its former location | ||||
# and rebases it onto <dest>. Changes introduced by ancestors of | ||||
# <root> not common with <dest> (the detachset, marked as | ||||
# nullmerge) are "removed" from the rebased changesets. | ||||
# | ||||
# - If <root> has a single parent, set it to <dest>. | ||||
# | ||||
# - If <root> is a merge, we cannot decide which parent to | ||||
# replace, the rebase operation is not clearly defined. | ||||
# | ||||
# The table below sums up this behavior: | ||||
# | ||||
# +------------------+----------------------+-------------------------+ | ||||
# | | one parent | merge | | ||||
# +------------------+----------------------+-------------------------+ | ||||
# | parent in | new parent is <dest> | parents in ::<dest> are | | ||||
# | ::<dest> | | remapped to <dest> | | ||||
# +------------------+----------------------+-------------------------+ | ||||
# | unrelated source | new parent is <dest> | ambiguous, abort | | ||||
# +------------------+----------------------+-------------------------+ | ||||
# | ||||
# The actual abort is handled by `defineparents` | ||||
if len(root.parents()) <= 1: | ||||
# ancestors of <root> not ancestors of <dest> | ||||
detachset.update(repo.changelog.findmissingrevs([commonbase.rev()], | ||||
[root.rev()])) | ||||
for r in detachset: | ||||
if r not in state: | ||||
state[r] = nullmerge | ||||
Pierre-Yves David
|
r18447 | if len(roots) > 1: | ||
# If we have multiple roots, we may have "hole" in the rebase set. | ||||
# Rebase roots that descend from those "hole" should not be detached as | ||||
# other root are. We use the special `revignored` to inform rebase that | ||||
Mads Kiilerich
|
r18644 | # the revision should be ignored but that `defineparents` should search | ||
# a rebase destination that make sense regarding rebased topology. | ||||
Pierre-Yves David
|
r18447 | rebasedomain = set(repo.revs('%ld::%ld', rebaseset, rebaseset)) | ||
for ignored in set(rebasedomain) - set(rebaseset): | ||||
state[ignored] = revignored | ||||
Pierre-Yves David
|
r15267 | return repo['.'].rev(), dest.rev(), state | ||
Stefano Tortarolo
|
r6906 | |||
Pierre-Yves David
|
r18444 | def clearrebased(ui, repo, state, skipped, collapsedas=None): | ||
Pierre-Yves David
|
r17613 | """dispose of rebased revision at the end of the rebase | ||
If `collapsedas` is not None, the rebase was a collapse whose result if the | ||||
`collapsedas` node.""" | ||||
Durham Goode
|
r22951 | if obsolete.isenabled(repo, obsolete.createmarkersopt): | ||
Pierre-Yves David
|
r17612 | markers = [] | ||
for rev, newrev in sorted(state.items()): | ||||
if newrev >= 0: | ||||
Pierre-Yves David
|
r18444 | if rev in skipped: | ||
succs = () | ||||
elif collapsedas is not None: | ||||
succs = (repo[collapsedas],) | ||||
else: | ||||
succs = (repo[newrev],) | ||||
markers.append((repo[rev], succs)) | ||||
Pierre-Yves David
|
r17612 | if markers: | ||
obsolete.createmarkers(repo, markers) | ||||
else: | ||||
Pierre-Yves David
|
r18446 | rebased = [rev for rev in state if state[rev] > nullmerge] | ||
Pierre-Yves David
|
r17612 | if rebased: | ||
Pierre-Yves David
|
r18424 | stripped = [] | ||
for root in repo.set('roots(%ld)', rebased): | ||||
if set(repo.changelog.descendants([root.rev()])) - set(state): | ||||
ui.warn(_("warning: new changesets detected " | ||||
"on source branch, not stripping\n")) | ||||
else: | ||||
stripped.append(root.node()) | ||||
if stripped: | ||||
Pierre-Yves David
|
r17612 | # backup the old csets by default | ||
Pierre-Yves David
|
r18424 | repair.strip(ui, repo, stripped, "all") | ||
Pierre-Yves David
|
r17611 | |||
Matt Mackall
|
r7216 | def pullrebase(orig, ui, repo, *args, **opts): | ||
Stefano Tortarolo
|
r6906 | 'Call rebase after pull if the latter has been invoked with --rebase' | ||
if opts.get('rebase'): | ||||
if opts.get('update'): | ||||
Martijn Pieters
|
r8242 | del opts['update'] | ||
Martin Geisler
|
r9467 | ui.debug('--update and --rebase are not compatible, ignoring ' | ||
'the update flag\n') | ||||
Stefano Tortarolo
|
r6906 | |||
Matt Mackall
|
r16228 | movemarkfrom = repo['.'].node() | ||
Stefano Tortarolo
|
r6906 | revsprepull = len(repo) | ||
Sune Foldager
|
r10628 | origpostincoming = commands.postincoming | ||
def _dummy(*args, **kwargs): | ||||
pass | ||||
commands.postincoming = _dummy | ||||
try: | ||||
orig(ui, repo, *args, **opts) | ||||
finally: | ||||
commands.postincoming = origpostincoming | ||||
Stefano Tortarolo
|
r6906 | revspostpull = len(repo) | ||
if revspostpull > revsprepull: | ||||
Pierre-Yves David
|
r17988 | # --rev option from pull conflict with rebase own --rev | ||
# dropping it | ||||
if 'rev' in opts: | ||||
del opts['rev'] | ||||
Matt Mackall
|
r7216 | rebase(ui, repo, **opts) | ||
Stefano Tortarolo
|
r7786 | branch = repo[None].branch() | ||
dest = repo[branch].rev() | ||||
if dest != repo['.'].rev(): | ||||
# there was nothing to rebase we force an update | ||||
Sune Foldager
|
r10628 | hg.update(repo, dest) | ||
Matt Mackall
|
r16228 | if bookmarks.update(repo, [movemarkfrom], repo['.'].node()): | ||
ui.status(_("updating bookmark %s\n") | ||||
% repo._bookmarkcurrent) | ||||
Stefano Tortarolo
|
r6906 | else: | ||
Adrian Buehlmann
|
r14444 | if opts.get('tool'): | ||
raise util.Abort(_('--tool can only be used with --rebase')) | ||||
Matt Mackall
|
r7216 | orig(ui, repo, *args, **opts) | ||
Stefano Tortarolo
|
r6906 | |||
Bryan O'Sullivan
|
r19214 | def summaryhook(ui, repo): | ||
if not os.path.exists(repo.join('rebasestate')): | ||||
return | ||||
FUJIWARA Katsunori
|
r19849 | try: | ||
state = restorestatus(repo)[2] | ||||
except error.RepoLookupError: | ||||
# i18n: column positioning for "hg summary" | ||||
msg = _('rebase: (use "hg rebase --abort" to clear broken state)\n') | ||||
ui.write(msg) | ||||
return | ||||
Pierre-Yves David
|
r23489 | numrebased = len([i for i in state.itervalues() if i >= 0]) | ||
Bryan O'Sullivan
|
r19214 | # i18n: column positioning for "hg summary" | ||
ui.write(_('rebase: %s, %s (rebase --continue)\n') % | ||||
(ui.label(_('%d rebased'), 'rebase.rebased') % numrebased, | ||||
ui.label(_('%d remaining'), 'rebase.remaining') % | ||||
(len(state) - numrebased))) | ||||
Stefano Tortarolo
|
r6906 | def uisetup(ui): | ||
'Replace pull with a decorator to provide --rebase option' | ||||
Matt Mackall
|
r7216 | entry = extensions.wrapcommand(commands.table, 'pull', pullrebase) | ||
entry[1].append(('', 'rebase', None, | ||||
Adrian Buehlmann
|
r14444 | _("rebase working directory to branch head"))) | ||
entry[1].append(('t', 'tool', '', | ||||
_("specify merge tool for rebase"))) | ||||
Bryan O'Sullivan
|
r19214 | cmdutil.summaryhooks.add('rebase', summaryhook) | ||
Matt Mackall
|
r19478 | cmdutil.unfinishedstates.append( | ||
Matt Mackall
|
r19496 | ['rebasestate', False, False, _('rebase in progress'), | ||
Matt Mackall
|
r19478 | _("use 'hg rebase --continue' or 'hg rebase --abort'")]) | ||