##// END OF EJS Templates
tests: prepare rebase test for wc parent preservation...
tests: prepare rebase test for wc parent preservation In the way to solving issue3813 we'll preserve the working directory parent after the rebase. Multiple rebases test expect the working directory parent to be tip after rebase. We patches them before the actual change to prevent confusion.

File last commit:

r19861:a69a77a8 default
r19924:c23c6220 default
Show More
rebase.py
864 lines | 34.1 KiB | text/x-python | PythonLexer
Stefano Tortarolo
Add rebase extension
r6906 # rebase.py - rebasing feature for mercurial
#
# Copyright 2008 Stefano Tortarolo <stefano.tortarolo at gmail dot com>
#
Martin Geisler
updated license to be explicit about GPL version 2
r8225 # This software may be used and distributed according to the terms of the
Matt Mackall
Update license to GPLv2+
r10263 # GNU General Public License version 2 or any later version.
Stefano Tortarolo
Add rebase extension
r6906
Dirkjan Ochtman
extensions: change descriptions for extensions providing a few commands
r8934 '''command to move sets of revisions to a different ancestor
Stefano Tortarolo
Add rebase extension
r6906
Martin Geisler
rebase: word-wrap help texts at 70 characters
r7999 This extension lets you rebase changesets in an existing Mercurial
repository.
Stefano Tortarolo
Add rebase extension
r6906
For more information:
Martin Geisler
rebase: link to RebaseExtension...
r9301 http://mercurial.selenic.com/wiki/RebaseExtension
Stefano Tortarolo
Add rebase extension
r6906 '''
Stefano Tortarolo
rebase: reset bookmarks (issue2265 and issue2873)
r14884 from mercurial import hg, util, repair, merge, cmdutil, commands, bookmarks
Augie Fackler
rebase: switch from util.Abort to util.InterventionRequired where appropriate (bc)
r18933 from mercurial import extensions, patch, scmutil, phases, obsolete, error
Stefano Tortarolo
Add rebase extension
r6906 from mercurial.commands import templateopts
from mercurial.node import nullrev
Ronny Pfannschmidt
switch lock releasing in the extensions from gc to explicit
r8112 from mercurial.lock import release
Stefano Tortarolo
Add rebase extension
r6906 from mercurial.i18n import _
import os, errno
Stefano Tortarolo
rebase: add --detach option to detach intermediate revisions (issue1950)...
r10352 nullmerge = -2
Pierre-Yves David
rebase: properly handle unrebased revision between rebased one...
r18447 revignored = -3
Stefano Tortarolo
rebase: add --detach option to detach intermediate revisions (issue1950)...
r10352
Adrian Buehlmann
rebase: use cmdutil.command decorator
r14306 cmdtable = {}
command = cmdutil.command(cmdtable)
Augie Fackler
hgext: mark all first-party extensions as such
r16743 testedwith = 'internal'
Adrian Buehlmann
rebase: use cmdutil.command decorator
r14306
Augie Fackler
rebase: preserve metadata from grafts of changes (issue4001)
r19861 def _savegraft(ctx, extra):
s = ctx.extra().get('source', None)
if s is not None:
extra['source'] = s
Augie Fackler
rebase: rework extrafn handling to support multiple extrafns...
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
rebase: use cmdutil.command decorator
r14306 @command('rebase',
[('s', 'source', '',
_('rebase from the specified changeset'), _('REV')),
('b', 'base', '',
_('rebase from the base of the specified changeset '
'(up to greatest common ancestor of base and dest)'),
_('REV')),
Pierre-Yves David
rebase: add --rev option to rebase...
r15270 ('r', 'rev', [],
_('rebase these revisions'),
_('REV')),
Adrian Buehlmann
rebase: use cmdutil.command decorator
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
rebase: add --edit switch
r15219 ('e', 'edit', False, _('invoke editor on commit messages')),
Adrian Buehlmann
rebase: use cmdutil.command decorator
r14306 ('l', 'logfile', '',
_('read collapse commit message from file'), _('FILE')),
('', 'keep', False, _('keep original changesets')),
('', 'keepbranches', False, _('keep original branch names')),
Pierre-Yves David
rebase: do not add second parent to rebased changeset (drop detach option) (BC)...
r17005 ('D', 'detach', False, _('(DEPRECATED)')),
Adrian Buehlmann
rebase: use cmdutil.command decorator
r14306 ('t', 'tool', '', _('specify merge tool')),
('c', 'continue', False, _('continue an interrupted rebase')),
('a', 'abort', False, _('abort an interrupted rebase'))] +
templateopts,
Patrick Mezard
rebase: remove second broken synopsis line (issue3172)...
r17325 _('[-s REV | -b REV] [-d REV] [OPTION]'))
Stefano Tortarolo
Add rebase extension
r6906 def rebase(ui, repo, **opts):
"""move changeset (and descendants) to a different branch
Martin Geisler
rebase: word-wrap help texts at 70 characters
r7999 Rebase uses repeated merging to graft changesets from one part of
Greg Ward
rebase: improve help text...
r10646 history (the source) onto another (the destination). This can be
Martin Geisler
rebase: stress that only local changesets should be rebased
r11188 useful for linearizing *local* changes relative to a master
Greg Ward
rebase: improve help text...
r10646 development tree.
Martin Geisler
rebase: stress that only local changesets should be rebased
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
rebase: mention phases in the help...
r18516 In its default configuration, Mercurial will prevent you from
rebasing published changes. See :hg:`help phases` for details.
Greg Ward
rebase: improve help text...
r10646 If you don't specify a destination changeset (``-d/--dest``),
Matt Mackall
rebase: simplify references to branch tips
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
rebase: improve help text...
r10646
You can specify which changesets to rebase in two ways: as a
Martin Geisler
rebase: remove unnecessary \" from help string...
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
rebase: improve help text...
r10646
Pierre-Yves David
rebase: mention --rev in the help...
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
rebase: improve help text...
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
rebase: simplify references to branch tips
r19398 nothing if you are at the branch tip of a named branch
Greg Ward
rebase: improve help text...
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
Add rebase extension
r6906
Martin Geisler
rebase: word-wrap help texts at 70 characters
r7999 If a rebase is interrupted to manually resolve a merge, it can be
Martin Geisler
help texts: write command line switches as -a/--abc
r8076 continued with --continue/-c or aborted with --abort/-a.
Matt Mackall
rebase: add error codes...
r11205
Returns 0 on success, 1 if nothing to rebase.
Stefano Tortarolo
Add rebase extension
r6906 """
Benoit Boissinot
remove unused variables
r7280 originalwd = target = None
Durham Goode
rebase: restore active bookmark after rebase --continue...
r18755 activebookmark = None
Stefano Tortarolo
Add rebase extension
r6906 external = nullrev
Benoit Boissinot
rebase: use set instead of dict
r8454 state = {}
skipped = set()
Stefano Tortarolo
rebase: refactoring...
r10351 targetancestors = set()
Stefano Tortarolo
Add rebase extension
r6906
Matt Mackall
rebase: add --edit switch
r15219 editor = None
if opts.get('edit'):
editor = cmdutil.commitforceeditor
Stefano Tortarolo
Add rebase extension
r6906 lock = wlock = None
try:
Mads Kiilerich
rebase: take locks in the right order...
r15874 wlock = repo.wlock()
Stefano Tortarolo
Add rebase extension
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
rebase: add --rev option to rebase...
r15270 revf = opts.get('rev', [])
Stefano Tortarolo
Add rebase extension
r6906 contf = opts.get('continue')
abortf = opts.get('abort')
collapsef = opts.get('collapse', False)
Idan Kamara
cmdutil, logmessage: use ui.fin when reading from '-'
r14635 collapsemsg = cmdutil.logmessage(ui, opts)
Augie Fackler
rebase: rework extrafn handling to support multiple extrafns...
r19860 e = opts.get('extrafn') # internal, used by e.g. hgsubversion
Augie Fackler
rebase: preserve metadata from grafts of changes (issue4001)
r19861 extrafns = [_savegraft]
Augie Fackler
rebase: rework extrafn handling to support multiple extrafns...
r19860 if e:
extrafns = [e]
Stefano Tortarolo
rebase: store/restore arguments correctly...
r7952 keepf = opts.get('keep', False)
keepbranchesf = opts.get('keepbranches', False)
Stefano Tortarolo
rebase: add option to not commit after a collapsing...
r10677 # keepopen is not meant for use on the command line, but by
# other extensions
keepopen = opts.get('keepopen', False)
Augie Fackler
rebase: add support to keep branch names...
r7468
Radomir Dopieralski
rebase: add -m/--message to rebase --collapse (issue2389)...
r13661 if collapsemsg and not collapsef:
raise util.Abort(
_('message can only be specified with collapse'))
Stefano Tortarolo
Add rebase extension
r6906 if contf or abortf:
if contf and abortf:
Matt Mackall
rebase: use usual util.abort rather than error.ParseError
r11285 raise util.Abort(_('cannot use both abort and continue'))
Stefano Tortarolo
Add rebase extension
r6906 if collapsef:
Matt Mackall
rebase: use usual util.abort rather than error.ParseError
r11285 raise util.Abort(
_('cannot use collapse with continue or abort'))
Martin Geisler
remove unnecessary outer parenthesis in if-statements
r8117 if srcf or basef or destf:
Matt Mackall
rebase: use usual util.abort rather than error.ParseError
r11285 raise util.Abort(
Stefano Tortarolo
Add rebase extension
r6906 _('abort and continue do not allow specifying revisions'))
Stefano Tortarolo
rebase: add --tool argument for specifying merge tool
r13856 if opts.get('tool', False):
ui.warn(_('tool option will be ignored\n'))
Stefano Tortarolo
Add rebase extension
r6906
FUJIWARA Katsunori
rebase: catch RepoLookupError at restoring rebase state for abort/continue...
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')
hint = _('use "hg rebase --abort" to clear borken state')
raise util.Abort(msg, hint=hint)
Stefano Tortarolo
Add rebase extension
r6906 if abortf:
Matt Mackall
rebase: add error codes...
r11205 return abort(repo, originalwd, target, state)
Stefano Tortarolo
Add rebase extension
r6906 else:
if srcf and basef:
Matt Mackall
rebase: use usual util.abort rather than error.ParseError
r11285 raise util.Abort(_('cannot specify both a '
Pierre-Yves David
rebase: add --rev option to rebase...
r15270 'source and a base'))
if revf and basef:
Wagner Bruna
rebase: fix typos
r15289 raise util.Abort(_('cannot specify both a '
Matt Mackall
rebase: use usual util.abort rather than error.ParseError
r11285 'revision and a base'))
Pierre-Yves David
rebase: add --rev option to rebase...
r15270 if revf and srcf:
Wagner Bruna
rebase: fix typos
r15289 raise util.Abort(_('cannot specify both a '
Pierre-Yves David
rebase: add --rev option to rebase...
r15270 'revision and a source'))
Stefano Tortarolo
rebase: add --detach option to detach intermediate revisions (issue1950)...
r10352
Matt Mackall
rebase: add checkunfinished support (issue3955)
r19478 cmdutil.checkunfinished(repo)
Matt Mackall
cmdutil: bail_if_changed to bailifchanged
r14289 cmdutil.bailifchanged(repo)
Pierre-Yves David
rebase: use revset as soon as possible in internal logic...
r15267
if not destf:
Pierre-Yves David
rebase: add --rev option to rebase...
r15270 # Destination defaults to the latest revision in the
# current branch
Pierre-Yves David
rebase: use revset as soon as possible in internal logic...
r15267 branch = repo[None].branch()
dest = repo[branch]
else:
Patrick Mezard
rebase: make --dest understand revsets
r16566 dest = scmutil.revsingle(repo, destf)
Pierre-Yves David
rebase: use revset as soon as possible in internal logic...
r15267
Matt Mackall
rebase: simplify set generation
r15271 if revf:
Bryan O'Sullivan
rebase: handle bookmarks matching revset function names (issue3950)...
r19641 rebaseset = scmutil.revrange(repo, revf)
Matt Mackall
rebase: simplify set generation
r15271 elif srcf:
Steven Brown
rebase: reinstate old-style rev spec support for the source and base (issue3181)...
r15800 src = scmutil.revrange(repo, [srcf])
Matt Mackall
merge with stable
r15801 rebaseset = repo.revs('(%ld)::', src)
Pierre-Yves David
rebase: use revset as soon as possible in internal logic...
r15267 else:
Steven Brown
rebase: reinstate old-style rev spec support for the source and base (issue3181)...
r15800 base = scmutil.revrange(repo, [basef or '.'])
Matt Mackall
merge with stable
r15801 rebaseset = repo.revs(
'(children(ancestor(%ld, %d)) and ::(%ld))::',
Matt Mackall
localrepo: convert various repo.set() users to repo.revs()
r15404 base, dest, base)
Pierre-Yves David
phases: prevent rebase to rebase immutable changeset.
r15742 if rebaseset:
root = min(rebaseset)
else:
root = None
Matt Mackall
rebase: simplify set generation
r15271
if not rebaseset:
Patrick Mezard
rebase: add missing EOL to debug strings
r16565 repo.ui.debug('base is ancestor of destination\n')
Pierre-Yves David
rebase: use revset as soon as possible in internal logic...
r15267 result = None
Pierre-Yves David
rebase: allow non-head rebase-set when obsolete is enabled...
r18164 elif (not (keepf or obsolete._enabled)
Pierre-Yves David
clfilter: drop unnecessary explicit filtering on rebase...
r18269 and repo.revs('first(children(%ld) - %ld)',
Pierre-Yves David
rebase: allow non-head rebase-set when obsolete is enabled...
r18164 rebaseset, rebaseset)):
Matt Mackall
rebase: simplify check for orphaned descendants
r15272 raise util.Abort(
_("can't remove original changesets with"
" unrebased descendants"),
hint=_('use --keep to keep original changesets'))
else:
Pierre-Yves David
rebase: do not add second parent to rebased changeset (drop detach option) (BC)...
r17005 result = buildstate(repo, dest, rebaseset, collapsef)
Matt Mackall
rebase: simplify check for orphaned descendants
r15272
Stefano Tortarolo
rebase: refactoring...
r10351 if not result:
# Empty state built, nothing to rebase
Martin Geisler
use ui instead of repo.ui when the former is in scope
r8615 ui.status(_('nothing to rebase\n'))
Matt Mackall
rebase: add error codes...
r11205 return 1
Siddharth Agarwal
rebase: check no-op before checking phase (issue3891)...
r19059 elif not keepf and not repo[root].mutable():
raise util.Abort(_("can't rebase immutable changeset %s")
% repo[root],
hint=_('see hg help phases for details'))
Stefano Tortarolo
rebase: refactoring...
r10351 else:
originalwd, target, state = result
if collapsef:
Siddharth Agarwal
rebase: use lazy ancestor membership testing...
r18093 targetancestors = repo.changelog.ancestors([target],
inclusive=True)
Stefano Tortarolo
rebase: refactoring...
r10351 external = checkexternal(repo, state, targetancestors)
Stefano Tortarolo
Add rebase extension
r6906
Stefano Tortarolo
rebase: store/restore arguments correctly...
r7952 if keepbranchesf:
Augie Fackler
rebase: rework extrafn handling to support multiple extrafns...
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
rebase: block collapse with keepbranches on multiple named branches (issue2112)...
r14897 if collapsef:
branches = set()
for rev in state:
branches.add(repo[rev].branch())
if len(branches) > 1:
Augie Fackler
rebase: remove trailing whitespace found by check-code
r14917 raise util.Abort(_('cannot collapse multiple named '
Stefano Tortarolo
rebase: block collapse with keepbranches on multiple named branches (issue2112)...
r14897 'branches'))
Stefano Tortarolo
rebase: store/restore arguments correctly...
r7952
Stefano Tortarolo
Add rebase extension
r6906 # Rebase
Stefano Tortarolo
rebase: refactoring...
r10351 if not targetancestors:
Siddharth Agarwal
rebase: use lazy ancestor membership testing...
r18093 targetancestors = repo.changelog.ancestors([target], inclusive=True)
Stefano Tortarolo
Add rebase extension
r6906
Stefano Tortarolo
rebase: reset bookmarks (issue2265 and issue2873)
r14884 # Keep track of the current bookmarks in order to reset them later
currentbookmarks = repo._bookmarks.copy()
Durham Goode
rebase: restore active bookmark after rebase --continue...
r18755 activebookmark = activebookmark or repo._bookmarkcurrent
David Schleimer
bookmarks: correctly update current bookmarks on rebase (issue2277)...
r17046 if activebookmark:
bookmarks.unsetcurrent(repo)
Stefano Tortarolo
rebase: reset bookmarks (issue2265 and issue2873)
r14884
Augie Fackler
rebase: rework extrafn handling to support multiple extrafns...
r19860 extrafn = _makeextrafn(extrafns)
timeless
rebase/progress: Adding progress for rebasing
r11729 sortedstate = sorted(state)
total = len(sortedstate)
pos = 0
for rev in sortedstate:
pos += 1
Stefano Tortarolo
Add rebase extension
r6906 if state[rev] == -1:
Alecs King
minor style fix: hgext/rebase.py:157 -- line too long...
r11761 ui.progress(_("rebasing"), pos, ("%d:%s" % (rev, repo[rev])),
timeless
progress: dropping superfluous space from units
r12744 _('changesets'), total)
Matt Mackall
rebase: reorder parent check and state storage...
r19477 p1, p2 = defineparents(repo, rev, target, state,
targetancestors)
Stefano Tortarolo
rebase: store/restore arguments correctly...
r7952 storestatus(repo, originalwd, target, state, collapsef, keepf,
Durham Goode
rebase: restore active bookmark after rebase --continue...
r18755 keepbranchesf, external, activebookmark)
Stefano Tortarolo
rebase: refactoring...
r10351 if len(repo.parents()) == 2:
repo.ui.debug('resuming interrupted rebase\n')
else:
Stefano Tortarolo
rebase: add --tool argument for specifying merge tool
r13856 try:
ui.setconfig('ui', 'forcemerge', opts.get('tool', ''))
Patrick Mezard
rebase: allow collapsing branches in place (issue3111)...
r16696 stats = rebasenode(repo, rev, p1, state, collapsef)
Stefano Tortarolo
rebase: add --tool argument for specifying merge tool
r13856 if stats and stats[3] > 0:
Augie Fackler
rebase: switch from util.Abort to util.InterventionRequired where appropriate (bc)
r18933 raise error.InterventionRequired(
_('unresolved conflicts (see hg '
'resolve, then hg rebase --continue)'))
Stefano Tortarolo
rebase: add --tool argument for specifying merge tool
r13856 finally:
ui.setconfig('ui', 'forcemerge', '')
Matt Mackall
cmdutil: simplify duplicatecopies
r15777 cmdutil.duplicatecopies(repo, rev, target)
Stefano Tortarolo
rebase: refactoring...
r10351 if not collapsef:
Matt Mackall
rebase: add --edit switch
r15219 newrev = concludenode(repo, rev, p1, p2, extrafn=extrafn,
editor=editor)
Stefano Tortarolo
rebase: refactoring...
r10351 else:
# Skip commit if we are collapsing
Patrick Mezard
localrepo: add setparents() to adjust dirstate copies (issue3407)...
r16551 repo.setparents(repo[p1].node())
Stefano Tortarolo
rebase: refactoring...
r10351 newrev = None
# Update the state
if newrev is not None:
state[rev] = repo[newrev].rev()
else:
if not collapsef:
ui.note(_('no changes, revision %d skipped\n') % rev)
ui.debug('next revision set to %s\n' % p1)
skipped.add(rev)
state[rev] = p1
timeless
rebase/progress: Adding progress for rebasing
r11729 ui.progress(_('rebasing'), None)
Stefano Tortarolo
Add rebase extension
r6906 ui.note(_('rebase merging completed\n'))
Stefano Tortarolo
rebase: add option to not commit after a collapsing...
r10677 if collapsef and not keepopen:
Dirkjan Ochtman
strip trailing whitespace, replace tabs by spaces
r6923 p1, p2 = defineparents(repo, min(state), target,
Stefano Tortarolo
Add rebase extension
r6906 state, targetancestors)
Radomir Dopieralski
rebase: add -m/--message to rebase --collapse (issue2389)...
r13661 if collapsemsg:
commitmsg = collapsemsg
else:
commitmsg = 'Collapsed revision'
for rebased in state:
Pierre-Yves David
rebase: lose the comparison to `nullmerge`...
r18446 if rebased not in skipped and state[rebased] > nullmerge:
Radomir Dopieralski
rebase: add -m/--message to rebase --collapse (issue2389)...
r13661 commitmsg += '\n* %s' % repo[rebased].description()
commitmsg = ui.edit(commitmsg, repo.ui.username())
Stefano Tortarolo
rebase: add --detach option to detach intermediate revisions (issue1950)...
r10352 newrev = concludenode(repo, rev, p1, external, commitmsg=commitmsg,
Matt Mackall
rebase: add --edit switch
r15219 extrafn=extrafn, editor=editor)
Stefano Tortarolo
Add rebase extension
r6906
if 'qtip' in repo.tags():
updatemq(repo, state, skipped, **opts)
Stefano Tortarolo
rebase: reset bookmarks (issue2265 and issue2873)
r14884 if currentbookmarks:
# Nodeids are needed to reset bookmarks
nstate = {}
for k, v in state.iteritems():
Pierre-Yves David
rebase: lose the comparison to `nullmerge`...
r18446 if v > nullmerge:
Stefano Tortarolo
rebase: reset bookmarks (issue2265 and issue2873)
r14884 nstate[repo[k].node()] = repo[v].node()
Siddharth Agarwal
rebase: derive node from target rev (issue3802)...
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
rebase: reset bookmarks (issue2265 and issue2873)
r14884
Stefano Tortarolo
rebase: store/restore arguments correctly...
r7952 if not keepf:
Pierre-Yves David
rebase: properly handle --collapse when creating obsolescence marker...
r17613 collapsedas = None
if collapsef:
collapsedas = newrev
Pierre-Yves David
rebase: do not invent successor to skipped changeset...
r18444 clearrebased(ui, repo, state, skipped, collapsedas)
Stefano Tortarolo
Add rebase extension
r6906
Stefano Tortarolo
rebase: reset bookmarks (issue2265 and issue2873)
r14884 if currentbookmarks:
Siddharth Agarwal
rebase: derive node from target rev (issue3802)...
r18549 updatebookmarks(repo, targetnode, nstate, currentbookmarks)
Stefano Tortarolo
rebase: reset bookmarks (issue2265 and issue2873)
r14884
Stefano Tortarolo
Add rebase extension
r6906 clearstatus(repo)
Matt Mackall
rebase: only show "rebase completed" message with -v
r11203 ui.note(_("rebase completed\n"))
Mads Kiilerich
refactoring: use unlinkpath with ignoremissing
r18386 util.unlinkpath(repo.sjoin('undo'), ignoremissing=True)
Stefano Tortarolo
Add rebase extension
r6906 if skipped:
ui.note(_("%d revisions have been skipped\n") % len(skipped))
David Schleimer
bookmarks: correctly update current bookmarks on rebase (issue2277)...
r17046
if (activebookmark and
repo['tip'].node() == repo._bookmarks[activebookmark]):
bookmarks.setcurrent(repo, activebookmark)
Stefano Tortarolo
Add rebase extension
r6906 finally:
Ronny Pfannschmidt
switch lock releasing in the extensions from gc to explicit
r8112 release(lock, wlock)
Stefano Tortarolo
Add rebase extension
r6906
Stefano Tortarolo
rebase: refactoring...
r10351 def checkexternal(repo, state, targetancestors):
"""Check whether one or more external revisions need to be taken in
consideration. In the latter case, abort.
"""
external = nullrev
source = min(state)
for rev in state:
if rev == source:
continue
# Check externals and fail if there are more than one
for p in repo[rev].parents():
if (p.rev() not in state
and p.rev() not in targetancestors):
if external != nullrev:
raise util.Abort(_('unable to collapse, there is more '
'than one external parent'))
external = p.rev()
return external
Matt Mackall
rebase: add --edit switch
r15219 def concludenode(repo, rev, p1, p2, commitmsg=None, editor=None, extrafn=None):
Stefano Tortarolo
rebase: refactoring...
r10351 'Commit the changes and store useful information in extra'
Stefano Tortarolo
Add rebase extension
r6906 try:
Patrick Mezard
localrepo: add setparents() to adjust dirstate copies (issue3407)...
r16551 repo.setparents(repo[p1].node(), repo[p2].node())
Nicolas Dumazet
rebase: small cosmetic cleanups
r11537 ctx = repo[rev]
Stefano Tortarolo
rebase: refactoring...
r10351 if commitmsg is None:
Nicolas Dumazet
rebase: small cosmetic cleanups
r11537 commitmsg = ctx.description()
Patrick Mezard
rebase: fix --collapse with --keepbranches (issue2100)...
r10762 extra = {'rebase_source': ctx.hex()}
if extrafn:
extrafn(ctx, extra)
Stefano Tortarolo
Add rebase extension
r6906 # Commit might fail if unresolved files exist
Patrick Mezard
rebase: fix --collapse with --keepbranches (issue2100)...
r10762 newrev = repo.commit(text=commitmsg, user=ctx.user(),
Matt Mackall
rebase: add --edit switch
r15219 date=ctx.date(), extra=extra, editor=editor)
Patrick Mezard
rebase: fix bug where --keepbranches could leave wrong branch in dirstate...
r8266 repo.dirstate.setbranch(repo[newrev].branch())
Alain Leufroy <alain.leufroyATgmailMYDOTcom>
rebase: fix phases movement...
r15917 targetphase = max(ctx.phase(), phases.draft)
# retractboundary doesn't overwrite upper phase inherited from parent
newnode = repo[newrev].node()
Matt Mackall
rebase: only advance phase on successful commit
r15923 if newnode:
phases.retractboundary(repo, targetphase, [newnode])
Stefano Tortarolo
Add rebase extension
r6906 return newrev
except util.Abort:
# Invalidate the previous setparents
repo.dirstate.invalidate()
raise
Patrick Mezard
rebase: allow collapsing branches in place (issue3111)...
r16696 def rebasenode(repo, rev, p1, state, collapse):
Stefano Tortarolo
Add rebase extension
r6906 'Rebase a single revision'
# Merge phase
Stefano Tortarolo
rebase: refactoring...
r10351 # Update to target and merge it with local
if repo['.'].rev() != repo[p1].rev():
repo.ui.debug(" update to %d:%s\n" % (repo[p1].rev(), repo[p1]))
merge.update(repo, p1, False, True, False)
Stefano Tortarolo
Add rebase extension
r6906 else:
Stefano Tortarolo
rebase: refactoring...
r10351 repo.ui.debug(" already in target\n")
repo.dirstate.write()
repo.ui.debug(" merge against %d:%s\n" % (repo[rev].rev(), repo[rev]))
Matt Mackall
rebase: use merge's ancestor parameter
r13875 base = None
if repo[rev].rev() != repo[min(state)].rev():
Matt Mackall
misc: replace .parents()[0] with p1()
r13878 base = repo[rev].p1().node()
Patrick Mezard
rebase: allow collapsing branches in place (issue3111)...
r16696 # When collapsing in-place, the parent is the common ancestor, we
# have to allow merging with it.
return merge.update(repo, rev, True, True, False, base, collapse)
Dirkjan Ochtman
strip trailing whitespace, replace tabs by spaces
r6923
Pierre-Yves David
rebase: properly handle unrebased revision between rebased one...
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:
return state[candidates[0]]
else:
return None
Stefano Tortarolo
Add rebase extension
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
P1n = parents[0].rev()
if P1n in targetancestors:
p1 = target
elif P1n in state:
Stefano Tortarolo
rebase: add --detach option to detach intermediate revisions (issue1950)...
r10352 if state[P1n] == nullmerge:
p1 = target
Pierre-Yves David
rebase: properly handle unrebased revision between rebased one...
r18447 elif state[P1n] == revignored:
p1 = nearestrebased(repo, P1n, state)
if p1 is None:
p1 = target
Stefano Tortarolo
rebase: add --detach option to detach intermediate revisions (issue1950)...
r10352 else:
p1 = state[P1n]
Stefano Tortarolo
Add rebase extension
r6906 else: # P1n external
p1 = target
p2 = P1n
if len(parents) == 2 and parents[1].rev() not in targetancestors:
P2n = parents[1].rev()
# interesting second parent
if P2n in state:
if p1 == target: # P1n in targetancestors or external
p1 = state[P2n]
Pierre-Yves David
rebase: properly handle unrebased revision between rebased one...
r18447 elif state[P2n] == revignored:
p2 = nearestrebased(repo, P2n, state)
if p2 is None:
# no ancestors rebased yet, detach
p2 = target
Stefano Tortarolo
Add rebase extension
r6906 else:
p2 = state[P2n]
else: # P2n external
if p2 != nullrev: # P1n external too => rev is a merged revision
raise util.Abort(_('cannot use revision %d as base, result '
'would have 3 parents') % rev)
p2 = P2n
Stefano Tortarolo
rebase: refactoring...
r10351 repo.ui.debug(" future parents are %d and %d\n" %
(repo[p1].rev(), repo[p2].rev()))
Stefano Tortarolo
Add rebase extension
r6906 return p1, p2
Stefano Tortarolo
rebase: keep original mq patch format (Issue1574)...
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
Add rebase extension
r6906 def updatemq(repo, state, skipped, **opts):
'Update rebased mq patches - finalize and then import them'
mqrebase = {}
Nicolas Dumazet
rebase: small cosmetic cleanups
r11537 mq = repo.mq
Adrian Buehlmann
mq: rename full_series to fullseries
r14572 original_series = mq.fullseries[:]
Patrick Mezard
rebase: preserve mq series order, guarded patches (issue2849)...
r16531 skippedpatches = set()
Stefano Tortarolo
rebase: restore mq guards after rebasing (issue2107)...
r14497
Nicolas Dumazet
rebase: small cosmetic cleanups
r11537 for p in mq.applied:
rev = repo[p.node].rev()
if rev in state:
Martin Geisler
do not attempt to translate ui.debug output
r9467 repo.ui.debug('revision %d is an mq patch (%s), finalize it.\n' %
Nicolas Dumazet
rebase: small cosmetic cleanups
r11537 (rev, p.name))
mqrebase[rev] = (p.name, isagitpatch(repo, p.name))
Patrick Mezard
rebase: preserve mq series order, guarded patches (issue2849)...
r16531 else:
# Applied but not rebased, not sure this should happen
skippedpatches.add(p.name)
Stefano Tortarolo
Add rebase extension
r6906
if mqrebase:
Nicolas Dumazet
rebase: small cosmetic cleanups
r11537 mq.finish(repo, mqrebase.keys())
Stefano Tortarolo
Add rebase extension
r6906
# We must start import from the newest revision
Matt Mackall
replace various uses of list.reverse()
r8210 for rev in sorted(mqrebase, reverse=True):
Stefano Tortarolo
Add rebase extension
r6906 if rev not in skipped:
Nicolas Dumazet
rebase: small cosmetic cleanups
r11537 name, isgit = mqrebase[rev]
repo.ui.debug('import mq patch %d (%s)\n' % (state[rev], name))
mq.qimport(repo, (), patchname=name, git=isgit,
rev=[str(state[rev])])
Patrick Mezard
rebase: preserve mq series order, guarded patches (issue2849)...
r16531 else:
# Rebased and skipped
skippedpatches.add(mqrebase[rev][0])
Stefano Tortarolo
rebase: restore mq guards after rebasing (issue2107)...
r14497
Patrick Mezard
rebase: preserve mq series order, guarded patches (issue2849)...
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
mq: rename save_dirty to savedirty
r14580 mq.savedirty()
Stefano Tortarolo
Add rebase extension
r6906
Siddharth Agarwal
rebase: derive node from target rev (issue3802)...
r18549 def updatebookmarks(repo, targetnode, nstate, originalbookmarks):
Siddharth Agarwal
rebase: delete divergent bookmarks on destination (issue3685)...
r18514 'Move bookmarks to their correct changesets, and delete divergent ones'
Augie Fackler
bookmarks: introduce a bmstore to manage bookmark persistence...
r17922 marks = repo._bookmarks
Stefano Tortarolo
rebase: reset bookmarks (issue2265 and issue2873)
r14884 for k, v in originalbookmarks.iteritems():
if v in nstate:
Siddharth Agarwal
rebase: remove bogus nullmerge check in updatebookmarks...
r18512 # update the bookmarks for revs that have moved
marks[k] = nstate[v]
Siddharth Agarwal
rebase: derive node from target rev (issue3802)...
r18549 bookmarks.deletedivergent(repo, [targetnode], k)
Stefano Tortarolo
rebase: reset bookmarks (issue2265 and issue2873)
r14884
Augie Fackler
bookmarks: introduce a bmstore to manage bookmark persistence...
r17922 marks.write()
Stefano Tortarolo
rebase: reset bookmarks (issue2265 and issue2873)
r14884
Stefano Tortarolo
rebase: store/restore arguments correctly...
r7952 def storestatus(repo, originalwd, target, state, collapse, keep, keepbranches,
Durham Goode
rebase: restore active bookmark after rebase --continue...
r18755 external, activebookmark):
Stefano Tortarolo
Add rebase extension
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
rebase: store/restore arguments correctly...
r7952 f.write('%d\n' % int(keep))
f.write('%d\n' % int(keepbranches))
Durham Goode
rebase: restore active bookmark after rebase --continue...
r18755 f.write('%s\n' % (activebookmark or ''))
Dirkjan Ochtman
use dict.iteritems() rather than dict.items()...
r7622 for d, v in state.iteritems():
Stefano Tortarolo
Add rebase extension
r6906 oldrev = repo[d].hex()
Pierre-Yves David
rebase: lose the comparison to `nullmerge`...
r18446 if v > nullmerge:
Stefano Tortarolo
rebase: treat nullmerge as a special case in rebasestate (issue3046)...
r15464 newrev = repo[v].hex()
else:
newrev = v
Stefano Tortarolo
Add rebase extension
r6906 f.write("%s:%s\n" % (oldrev, newrev))
f.close()
Martin Geisler
do not attempt to translate ui.debug output
r9467 repo.ui.debug('rebase status stored\n')
Stefano Tortarolo
Add rebase extension
r6906
def clearstatus(repo):
'Remove the status files'
Mads Kiilerich
refactoring: use unlinkpath with ignoremissing
r18386 util.unlinkpath(repo.join("rebasestate"), ignoremissing=True)
Stefano Tortarolo
Add rebase extension
r6906
def restorestatus(repo):
'Restore a previously stored status'
try:
target = None
collapse = False
external = nullrev
Durham Goode
rebase: restore active bookmark after rebase --continue...
r18755 activebookmark = None
Stefano Tortarolo
Add rebase extension
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
rebase: store/restore arguments correctly...
r7952 elif i == 4:
keep = bool(int(l))
elif i == 5:
keepbranches = bool(int(l))
Durham Goode
rebase: restore active bookmark after rebase --continue...
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
Add rebase extension
r6906 else:
oldrev, newrev = l.split(':')
Pierre-Yves David
rebase: properly handle unrebased revision between rebased one...
r18447 if newrev in (str(nullmerge), str(revignored)):
state[repo[oldrev].rev()] = int(newrev)
else:
Stefano Tortarolo
rebase: treat nullmerge as a special case in rebasestate (issue3046)...
r15464 state[repo[oldrev].rev()] = repo[newrev].rev()
Benoit Boissinot
rebase: recompute the set of skipped rev when using --continue (issue2330)
r11843 skipped = set()
# recompute the set of skipped revs
if not collapse:
seen = set([target])
for old, new in sorted(state.items()):
if new != nullrev and new in seen:
skipped.add(old)
seen.add(new)
repo.ui.debug('computed skipped revs: %s\n' % skipped)
Martin Geisler
do not attempt to translate ui.debug output
r9467 repo.ui.debug('rebase status resumed\n')
Benoit Boissinot
rebase: recompute the set of skipped rev when using --continue (issue2330)
r11843 return (originalwd, target, state, skipped,
Durham Goode
rebase: restore active bookmark after rebase --continue...
r18755 collapse, keep, keepbranches, external, activebookmark)
Stefano Tortarolo
Add rebase extension
r6906 except IOError, err:
if err.errno != errno.ENOENT:
raise
raise util.Abort(_('no rebase in progress'))
Matt Mackall
rebase: don't clobber wd on --abort when we've updated away (issue4009)
r19516 def inrebase(repo, originalwd, state):
'''check whether the workdir is in an interrupted rebase'''
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
Add rebase extension
r6906 def abort(repo, originalwd, target, state):
'Restore the repository to its original state'
Matt Mackall
rebase: properly calculate descendant set when aborting (issue3332)...
r16280 dstates = [s for s in state.values() if s != nullrev]
Dan Villiom Podlaski Christiansen
rebase: improve error message on improper phases...
r17026 immutable = [d for d in dstates if not repo[d].mutable()]
Matt Mackall
rebase: allow aborting when descendants detected...
r19518 cleanup = True
Dan Villiom Podlaski Christiansen
rebase: improve error message on improper phases...
r17026 if immutable:
Matt Mackall
rebase: continue abort without strip for immutable csets (issue3997)...
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
rebase: allow aborting when descendants detected...
r19518 cleanup = False
Matt Mackall
rebase: properly calculate descendant set when aborting (issue3332)...
r16280
descendants = set()
if dstates:
Bryan O'Sullivan
revlog: descendants(*revs) becomes descendants(revs) (API)...
r16867 descendants = set(repo.changelog.descendants(dstates))
Matt Mackall
rebase: properly calculate descendant set when aborting (issue3332)...
r16280 if descendants - set(dstates):
Stefano Tortarolo
Add rebase extension
r6906 repo.ui.warn(_("warning: new changesets detected on target branch, "
Matt Mackall
rebase: allow aborting when descendants detected...
r19518 "can't strip\n"))
cleanup = False
if cleanup:
Matt Mackall
rebase: don't clobber wd on --abort when we've updated away (issue4009)
r19516 # Update away from the rebase if necessary
Matt Mackall
rebase: allow aborting when descendants detected...
r19518 if inrebase(repo, originalwd, state):
Matt Mackall
rebase: don't clobber wd on --abort when we've updated away (issue4009)
r19516 merge.update(repo, repo[originalwd].rev(), False, True, False)
Stefano Tortarolo
Add rebase extension
r6906 # Strip from the first rebased revision
Stefano Tortarolo
rebase: --abort doesn't strip away the target changeset (issue2220)...
r11316 rebased = filter(lambda x: x > -1 and x != target, state.values())
Matt Mackall
rebase: allow aborting when descendants detected...
r19518 if rebased:
Pierre-Yves David
rebase: support multiple roots for rebaseset...
r18424 strippoints = [c.node() for c in repo.set('roots(%ld)', rebased)]
Matt Mackall
Fix up rebase's handling of strip backups
r11201 # no backup of rebased cset versions needed
Pierre-Yves David
rebase: support multiple roots for rebaseset...
r18424 repair.strip(repo.ui, repo, strippoints)
Matt Mackall
rebase: allow aborting when descendants detected...
r19518
clearstatus(repo)
repo.ui.warn(_('rebase aborted\n'))
return 0
Stefano Tortarolo
Add rebase extension
r6906
Pierre-Yves David
rebase: do not add second parent to rebased changeset (drop detach option) (BC)...
r17005 def buildstate(repo, dest, rebaseset, collapse):
Pierre-Yves David
rebase: use revset as soon as possible in internal logic...
r15267 '''Define which revisions are going to be rebased and where
Stefano Tortarolo
Add rebase extension
r6906
Pierre-Yves David
rebase: use revset as soon as possible in internal logic...
r15267 repo: repo
dest: context
rebaseset: set of rev
Pierre-Yves David
rebase: do not add second parent to rebased changeset (drop detach option) (BC)...
r17005 '''
Stefano Tortarolo
Add rebase extension
r6906
Greg Ward
rebase: always check if rebasing onto an applied mq patch....
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
rebase: use revset as soon as possible in internal logic...
r15267 if 'qtip' in repo.tags() and (dest.node() in
Benoit Boissinot
mq: avoid many hex/bin conversions, keep the binary node when possible
r10678 [s.node for s in repo.mq.applied]):
Greg Ward
rebase: always check if rebasing onto an applied mq patch....
r10672 raise util.Abort(_('cannot rebase onto an applied mq patch'))
Pierre-Yves David
rebase: use revset as soon as possible in internal logic...
r15267 roots = list(repo.set('roots(%ld)', rebaseset))
if not roots:
Pierre-Yves David
rebase: add --rev option to rebase...
r15270 raise util.Abort(_('no matching revisions'))
Pierre-Yves David
rebase: support multiple roots for rebaseset...
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
Add rebase extension
r6906
Pierre-Yves David
rebase: support multiple roots for rebaseset...
r18424 repo.ui.debug('rebase onto %d starting from %s\n' % (dest, roots))
state.update(dict.fromkeys(rebaseset, nullrev))
# 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
rebase: properly handle unrebased revision between rebased one...
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
spelling: fix some minor issues found by spell checker
r18644 # the revision should be ignored but that `defineparents` should search
# a rebase destination that make sense regarding rebased topology.
Pierre-Yves David
rebase: properly handle unrebased revision between rebased one...
r18447 rebasedomain = set(repo.revs('%ld::%ld', rebaseset, rebaseset))
for ignored in set(rebasedomain) - set(rebaseset):
state[ignored] = revignored
Pierre-Yves David
rebase: use revset as soon as possible in internal logic...
r15267 return repo['.'].rev(), dest.rev(), state
Stefano Tortarolo
Add rebase extension
r6906
Pierre-Yves David
rebase: do not invent successor to skipped changeset...
r18444 def clearrebased(ui, repo, state, skipped, collapsedas=None):
Pierre-Yves David
rebase: properly handle --collapse when creating obsolescence marker...
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."""
Pierre-Yves David
rebase: allow creation obsolescence relation instead of stripping...
r17612 if obsolete._enabled:
markers = []
for rev, newrev in sorted(state.items()):
if newrev >= 0:
Pierre-Yves David
rebase: do not invent successor to skipped changeset...
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
rebase: allow creation obsolescence relation instead of stripping...
r17612 if markers:
obsolete.createmarkers(repo, markers)
else:
Pierre-Yves David
rebase: lose the comparison to `nullmerge`...
r18446 rebased = [rev for rev in state if state[rev] > nullmerge]
Pierre-Yves David
rebase: allow creation obsolescence relation instead of stripping...
r17612 if rebased:
Pierre-Yves David
rebase: support multiple roots for rebaseset...
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
rebase: allow creation obsolescence relation instead of stripping...
r17612 # backup the old csets by default
Pierre-Yves David
rebase: support multiple roots for rebaseset...
r18424 repair.strip(ui, repo, stripped, "all")
Pierre-Yves David
rebase: extract final changesets cleanup logic in a dedicated function...
r17611
Matt Mackall
extensions: use new wrapper functions
r7216 def pullrebase(orig, ui, repo, *args, **opts):
Stefano Tortarolo
Add rebase extension
r6906 'Call rebase after pull if the latter has been invoked with --rebase'
if opts.get('rebase'):
if opts.get('update'):
Martijn Pieters
Fix typeerror when specifying both --rebase and --pull
r8242 del opts['update']
Martin Geisler
do not attempt to translate ui.debug output
r9467 ui.debug('--update and --rebase are not compatible, ignoring '
'the update flag\n')
Stefano Tortarolo
Add rebase extension
r6906
Matt Mackall
rebase: move bookmarks as needed with pull --rebase (issue3285)
r16228 movemarkfrom = repo['.'].node()
Stefano Tortarolo
Add rebase extension
r6906 revsprepull = len(repo)
Sune Foldager
rebase: improve output of hg pull --rebase (issue2072)
r10628 origpostincoming = commands.postincoming
def _dummy(*args, **kwargs):
pass
commands.postincoming = _dummy
try:
orig(ui, repo, *args, **opts)
finally:
commands.postincoming = origpostincoming
Stefano Tortarolo
Add rebase extension
r6906 revspostpull = len(repo)
if revspostpull > revsprepull:
Pierre-Yves David
rebase: fix pull --rev options clashing with --rebase (issue3619)...
r17988 # --rev option from pull conflict with rebase own --rev
# dropping it
if 'rev' in opts:
del opts['rev']
Matt Mackall
extensions: use new wrapper functions
r7216 rebase(ui, repo, **opts)
Stefano Tortarolo
rebase: pull --rebase updates if there is nothing to rebase
r7786 branch = repo[None].branch()
dest = repo[branch].rev()
if dest != repo['.'].rev():
# there was nothing to rebase we force an update
Sune Foldager
rebase: improve output of hg pull --rebase (issue2072)
r10628 hg.update(repo, dest)
Matt Mackall
rebase: move bookmarks as needed with pull --rebase (issue3285)
r16228 if bookmarks.update(repo, [movemarkfrom], repo['.'].node()):
ui.status(_("updating bookmark %s\n")
% repo._bookmarkcurrent)
Stefano Tortarolo
Add rebase extension
r6906 else:
Adrian Buehlmann
rebase: add option --tool/-t for 'pull --rebase'...
r14444 if opts.get('tool'):
raise util.Abort(_('--tool can only be used with --rebase'))
Matt Mackall
extensions: use new wrapper functions
r7216 orig(ui, repo, *args, **opts)
Stefano Tortarolo
Add rebase extension
r6906
Bryan O'Sullivan
summary: indicate if a rebase is underway
r19214 def summaryhook(ui, repo):
if not os.path.exists(repo.join('rebasestate')):
return
FUJIWARA Katsunori
rebase: catch RepoLookupError at restoring rebase state for summary...
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
Bryan O'Sullivan
summary: indicate if a rebase is underway
r19214 numrebased = len([i for i in state.itervalues() if i != -1])
# 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
Add rebase extension
r6906 def uisetup(ui):
'Replace pull with a decorator to provide --rebase option'
Matt Mackall
extensions: use new wrapper functions
r7216 entry = extensions.wrapcommand(commands.table, 'pull', pullrebase)
entry[1].append(('', 'rebase', None,
Adrian Buehlmann
rebase: add option --tool/-t for 'pull --rebase'...
r14444 _("rebase working directory to branch head")))
entry[1].append(('t', 'tool', '',
_("specify merge tool for rebase")))
Bryan O'Sullivan
summary: indicate if a rebase is underway
r19214 cmdutil.summaryhooks.add('rebase', summaryhook)
Matt Mackall
rebase: add checkunfinished support (issue3955)
r19478 cmdutil.unfinishedstates.append(
Matt Mackall
checkunfinished: accommodate histedit quirk...
r19496 ['rebasestate', False, False, _('rebase in progress'),
Matt Mackall
rebase: add checkunfinished support (issue3955)
r19478 _("use 'hg rebase --continue' or 'hg rebase --abort'")])