##// END OF EJS Templates
fix: warn when a fixer doesn't have a configured command...
fix: warn when a fixer doesn't have a configured command It seems we currently produce an empty command line and then decide to not run it, but it seems better to skip that part too. Differential Revision: https://phab.mercurial-scm.org/D7085

File last commit:

r43387:8ff1ecfa default
r43494:d3d1a3af default
Show More
strip.py
287 lines | 9.1 KiB | text/x-python | PythonLexer
Mads Kiilerich
spelling: fixes from proofreading of spell checker issues
r23139 """strip changesets and their descendants from history
Pierre-Yves David
mq: extract strip function as its standalone extension (issue3824)...
r19826
Javi Merino
strip: fix spelling: "allows to" -> "allows you to"
r19945 This extension allows you to strip changesets and all their descendants from the
Pierre-Yves David
mq: extract strip function as its standalone extension (issue3824)...
r19826 repository. See the command help for details.
"""
timeless
strip: use absolute_import
r28377 from __future__ import absolute_import
Yuya Nishihara
py3: move up symbol imports to enforce import-checker rules...
r29205 from mercurial.i18n import _
Gregory Szorc
py3: manually import getattr where it is needed...
r43359 from mercurial.pycompat import getattr
timeless
strip: use absolute_import
r28377 from mercurial import (
bookmarks as bookmarksmod,
cmdutil,
error,
hg,
lock as lockmod,
merge,
node as nodemod,
Pulkit Goyal
py3: convert keys of kwargs back to bytes using pycompat.byteskwargs()
r32897 pycompat,
Yuya Nishihara
registrar: move cmdutil.command to registrar module (API)...
r32337 registrar,
timeless
strip: use absolute_import
r28377 repair,
scmutil,
util,
)
Augie Fackler
formatting: blacken the codebase...
r43346
timeless
strip: use absolute_import
r28377 nullid = nodemod.nullid
release = lockmod.release
Pierre-Yves David
mq: prepare a strip extension for extraction...
r19822
cmdtable = {}
Yuya Nishihara
registrar: move cmdutil.command to registrar module (API)...
r32337 command = registrar.command(cmdtable)
Augie Fackler
extensions: change magic "shipped with hg" string...
r29841 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
Augie Fackler
extensions: document that `testedwith = 'internal'` is special...
r25186 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
# be specifying the version(s) of Mercurial they are tested with, or
# leave the attribute unspecified.
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 testedwith = b'ships-with-hg-core'
Pierre-Yves David
strip: move checksubstate from mq to strip...
r19823
Augie Fackler
formatting: blacken the codebase...
r43346
Martin von Zweigbergk
strip: remove unused excsuffix argument from checklocalchanges()...
r42690 def checklocalchanges(repo, force=False):
Martin von Zweigbergk
strip: make checklocalchanges() return full status tuple...
r22925 s = repo.status()
Pierre-Yves David
strip: move checklocalchanges from mq to strip...
r19824 if not force:
Taapas Agrawal
statecheck: added support for STATES...
r42732 cmdutil.checkunfinished(repo)
Martin von Zweigbergk
strip: use bailifchanged() instead of reimplementing it...
r42691 cmdutil.bailifchanged(repo)
Taapas Agrawal
statecheck: added support for STATES...
r42732 else:
cmdutil.checkunfinished(repo, skipmerge=True)
Martin von Zweigbergk
strip: make checklocalchanges() return full status tuple...
r22925 return s
Pierre-Yves David
strip: move checklocalchanges from mq to strip...
r19824
Augie Fackler
formatting: blacken the codebase...
r43346
Paul Morelle
strip: factor out update target selection...
r34575 def _findupdatetarget(repo, nodes):
unode, p2 = repo.changelog.parents(nodes[0])
Paul Morelle
strip: take branch into account when selecting update target (issue5540)...
r34622 currentbranch = repo[None].branch()
Paul Morelle
strip: factor out update target selection...
r34575
Augie Fackler
formatting: blacken the codebase...
r43346 if (
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 util.safehasattr(repo, b'mq')
Augie Fackler
formatting: blacken the codebase...
r43346 and p2 != nullid
and p2 in [x.node for x in repo.mq.applied]
):
Paul Morelle
strip: factor out update target selection...
r34575 unode = p2
Paul Morelle
strip: take branch into account when selecting update target (issue5540)...
r34622 elif currentbranch != repo[unode].branch():
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 pwdir = b'parents(wdir())'
revset = b'max(((parents(%ln::%r) + %r) - %ln::%r) and branch(%s))'
Augie Fackler
formatting: blacken the codebase...
r43346 branchtarget = repo.revs(
revset, nodes, pwdir, pwdir, nodes, pwdir, currentbranch
)
Paul Morelle
strip: take branch into account when selecting update target (issue5540)...
r34622 if branchtarget:
cl = repo.changelog
unode = cl.node(branchtarget.first())
Paul Morelle
strip: factor out update target selection...
r34575
return unode
Augie Fackler
formatting: blacken the codebase...
r43346
def strip(
ui,
repo,
revs,
update=True,
backup=True,
force=None,
bookmarks=None,
soft=False,
):
Martin von Zweigbergk
strip: use context manager for locking in strip()
r32919 with repo.wlock(), repo.lock():
Pierre-Yves David
strip: move the strip helper function for mq to strip...
r19825
if update:
checklocalchanges(repo, force=force)
Paul Morelle
strip: factor out update target selection...
r34575 urev = _findupdatetarget(repo, revs)
Pierre-Yves David
strip: move the strip helper function for mq to strip...
r19825 hg.clean(repo, urev)
FUJIWARA Katsunori
dirstate: make dirstate.write() callers pass transaction object to it...
r26748 repo.dirstate.write(repo.currenttransaction())
Pierre-Yves David
strip: move the strip helper function for mq to strip...
r19825
Boris Feld
strip: introduce a soft strip option...
r41960 if soft:
repair.softstrip(ui, repo, revs, backup)
else:
repair.strip(ui, repo, revs, backup)
David Soria Parra
strip: remove bookmarks after strip succeed (issue4295)...
r21847
Shubhanshu Agrawal
strip: renaming local variables...
r26972 repomarks = repo._bookmarks
Shubhanshu Agrawal
strip: strip a list of bookmarks...
r27029 if bookmarks:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 with repo.transaction(b'strip') as tr:
Laurent Charignon
strip: use repo._bookmarks.recordchange instead of repo._bookmarks.write...
r27052 if repo._activebookmark in bookmarks:
bookmarksmod.deactivate(repo)
Boris Feld
bookmark: use 'applychanges' when stripping
r33488 repomarks.applychanges(repo, tr, [(b, None) for b in bookmarks])
Bryan O'Sullivan
with: use a context manager for transaction in strip
r27872 for bookmark in sorted(bookmarks):
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.write(_(b"bookmark '%s' deleted\n") % bookmark)
Pierre-Yves David
mq: extract strip function as its standalone extension (issue3824)...
r19826
Augie Fackler
formatting: blacken the codebase...
r43346
@command(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b"strip",
Augie Fackler
formatting: blacken the codebase...
r43346 [
(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'r',
b'rev',
Augie Fackler
formatting: blacken the codebase...
r43346 [],
_(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'strip specified revision (optional, '
b'can specify revisions without this '
b'option)'
Augie Fackler
formatting: blacken the codebase...
r43346 ),
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 _(b'REV'),
Augie Fackler
formatting: blacken the codebase...
r43346 ),
(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'f',
b'force',
Augie Fackler
formatting: blacken the codebase...
r43346 None,
_(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'force removal of changesets, discard '
b'uncommitted changes (no backup)'
Augie Fackler
formatting: blacken the codebase...
r43346 ),
),
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 (b'', b'no-backup', None, _(b'do not save backup bundle')),
Martin von Zweigbergk
cleanup: join string literals that are already on one line...
r43387 (b'', b'nobackup', None, _(b'do not save backup bundle (DEPRECATED)'),),
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 (b'n', b'', None, _(b'ignored (DEPRECATED)')),
(
b'k',
b'keep',
None,
Martin von Zweigbergk
cleanup: join string literals that are already on one line...
r43387 _(b"do not modify working directory during strip"),
Augie Fackler
formatting: blacken the codebase...
r43346 ),
(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'B',
b'bookmark',
Augie Fackler
formatting: blacken the codebase...
r43346 [],
Martin von Zweigbergk
cleanup: join string literals that are already on one line...
r43387 _(b"remove revs only reachable from given bookmark"),
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 _(b'BOOKMARK'),
Augie Fackler
formatting: blacken the codebase...
r43346 ),
(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 b'',
b'soft',
Augie Fackler
formatting: blacken the codebase...
r43346 None,
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 _(b"simply drop changesets from visible history (EXPERIMENTAL)"),
Augie Fackler
formatting: blacken the codebase...
r43346 ),
],
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 _(b'hg strip [-k] [-f] [-B bookmark] [-r] REV...'),
Augie Fackler
formatting: blacken the codebase...
r43346 helpcategory=command.CATEGORY_MAINTENANCE,
)
Pierre-Yves David
mq: extract strip function as its standalone extension (issue3824)...
r19826 def stripcmd(ui, repo, *revs, **opts):
"""strip changesets and all their descendants from the repository
The strip command removes the specified changesets and all their
descendants. If the working directory has uncommitted changes, the
operation is aborted unless the --force flag is supplied, in which
case changes will be discarded.
If a parent of the working directory is stripped, then the working
directory will automatically be updated to the most recent
available ancestor of the stripped parent after the operation
completes.
Any stripped changesets are stored in ``.hg/strip-backup`` as a
bundle (see :hg:`help bundle` and :hg:`help unbundle`). They can
be restored by running :hg:`unbundle .hg/strip-backup/BUNDLE`,
where BUNDLE is the bundle file created by the strip. Note that
the local revision numbers will in general be different after the
restore.
Use the --no-backup option to discard the backup bundle once the
operation completes.
Strip is not a history-rewriting operation and can be used on
changesets in the public phase. But if the stripped changesets have
been pushed to a remote repository you will likely pull them again.
Return 0 on success.
"""
Pulkit Goyal
py3: convert keys of kwargs back to bytes using pycompat.byteskwargs()
r32897 opts = pycompat.byteskwargs(opts)
Jordi Gutiérrez Hermoso
strip: remove -b/--backup codepaths...
r22057 backup = True
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 if opts.get(b'no_backup') or opts.get(b'nobackup'):
Jordi Gutiérrez Hermoso
strip: remove -b/--backup codepaths...
r22057 backup = False
Pierre-Yves David
mq: extract strip function as its standalone extension (issue3824)...
r19826
cl = repo.changelog
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 revs = list(revs) + opts.get(b'rev')
Pierre-Yves David
mq: extract strip function as its standalone extension (issue3824)...
r19826 revs = set(scmutil.revrange(repo, revs))
Bryan O'Sullivan
with: use context manager for wlock in shelve stripcmd
r27839 with repo.wlock():
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 bookmarks = set(opts.get(b'bookmark'))
Shubhanshu Agrawal
strip: strip a list of bookmarks...
r27029 if bookmarks:
Shubhanshu Agrawal
strip: renaming local variables...
r26972 repomarks = repo._bookmarks
Shubhanshu Agrawal
strip: strip a list of bookmarks...
r27029 if not bookmarks.issubset(repomarks):
Augie Fackler
formatting: blacken the codebase...
r43346 raise error.Abort(
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 _(b"bookmark '%s' not found")
% b','.join(sorted(bookmarks - set(repomarks.keys())))
Augie Fackler
formatting: blacken the codebase...
r43346 )
Siddharth Agarwal
strip: hold wlock for entire duration...
r20096
# If the requested bookmark is not the only one pointing to a
# a revision we have to only delete the bookmark and not strip
# anything. revsets cannot detect that case.
Shubhanshu Agrawal
strip: strip a list of bookmarks...
r27029 nodetobookmarks = {}
Gregory Szorc
py3: define and use pycompat.iteritems() for hgext/...
r43375 for mark, node in pycompat.iteritems(repomarks):
Shubhanshu Agrawal
strip: strip a list of bookmarks...
r27029 nodetobookmarks.setdefault(node, []).append(mark)
for marks in nodetobookmarks.values():
if bookmarks.issuperset(marks):
David Demelier
scmutil: move repair.stripbmrevset as scmutil.bookmarkrevs (API)
r38146 rsrevs = scmutil.bookmarkrevs(repo, marks[0])
Shubhanshu Agrawal
strip: changing bookmark argument to be a list...
r27030 revs.update(set(rsrevs))
Siddharth Agarwal
strip: hold wlock for entire duration...
r20096 if not revs:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 with repo.lock(), repo.transaction(b'bookmark') as tr:
Boris Feld
bookmark: use 'applychanges' when stripping
r33488 bmchanges = [(b, None) for b in bookmarks]
repomarks.applychanges(repo, tr, bmchanges)
Martin von Zweigbergk
strip: use context manager for locking and transaction in stripcmd()
r32920 for bookmark in sorted(bookmarks):
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 ui.write(_(b"bookmark '%s' deleted\n") % bookmark)
Siddharth Agarwal
strip: hold wlock for entire duration...
r20096
if not revs:
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 raise error.Abort(_(b'empty revision set'))
Siddharth Agarwal
strip: hold wlock for entire duration...
r20096
descendants = set(cl.descendants(revs))
strippedrevs = revs.union(descendants)
roots = revs.difference(descendants)
# if one of the wdir parent is stripped we'll need
# to update away to an earlier revision
Augie Fackler
formatting: blacken the codebase...
r43346 update = any(
p != nullid and cl.rev(p) in strippedrevs
for p in repo.dirstate.parents()
)
Siddharth Agarwal
strip: hold wlock for entire duration...
r20096
rootnodes = set(cl.node(r) for r in roots)
Pierre-Yves David
mq: extract strip function as its standalone extension (issue3824)...
r19826
Siddharth Agarwal
strip: hold wlock for entire duration...
r20096 q = getattr(repo, 'mq', None)
if q is not None and q.applied:
# refresh queue state if we're about to strip
# applied patches
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 if cl.rev(repo.lookup(b'qtip')) in strippedrevs:
Siddharth Agarwal
strip: hold wlock for entire duration...
r20096 q.applieddirty = True
start = 0
end = len(q.applied)
for i, statusentry in enumerate(q.applied):
if statusentry.node in rootnodes:
# if one of the stripped roots is an applied
# patch, only part of the queue is stripped
start = i
break
del q.applied[start:end]
q.savedirty()
revs = sorted(rootnodes)
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 if update and opts.get(b'keep'):
Paul Morelle
strip: factor out update target selection...
r34575 urev = _findupdatetarget(repo, revs)
Siddharth Agarwal
strip.stripcmd: remove redundant wlock acquire/release...
r20102 uctx = repo[urev]
Siddharth Agarwal
strip: hold wlock for entire duration...
r20096
Siddharth Agarwal
strip.stripcmd: remove redundant wlock acquire/release...
r20102 # only reset the dirstate for files that would actually change
# between the working context and uctx
Augie Fackler
strip: use %d for known-int string interpolation...
r35843 descendantrevs = repo.revs(b"%d::.", uctx.rev())
Siddharth Agarwal
strip.stripcmd: remove redundant wlock acquire/release...
r20102 changedfiles = []
for rev in descendantrevs:
# blindly reset the files, regardless of what actually changed
changedfiles.extend(repo[rev].files())
Siddharth Agarwal
strip: hold wlock for entire duration...
r20096
Siddharth Agarwal
strip.stripcmd: remove redundant wlock acquire/release...
r20102 # reset files that only changed in the dirstate too
dirstate = repo.dirstate
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 dirchanges = [f for f in dirstate if dirstate[f] != b'n']
Siddharth Agarwal
strip.stripcmd: remove redundant wlock acquire/release...
r20102 changedfiles.extend(dirchanges)
Siddharth Agarwal
strip: hold wlock for entire duration...
r20096
Siddharth Agarwal
strip.stripcmd: remove redundant wlock acquire/release...
r20102 repo.dirstate.rebuild(urev, uctx.manifest(), changedfiles)
FUJIWARA Katsunori
dirstate: make dirstate.write() callers pass transaction object to it...
r26748 repo.dirstate.write(repo.currenttransaction())
Matt Mackall
strip: properly clear resolve state with --keep (issue4593)...
r24709
# clear resolve state
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 merge.mergestate.clean(repo, repo[b'.'].node())
Matt Mackall
strip: properly clear resolve state with --keep (issue4593)...
r24709
Siddharth Agarwal
strip.stripcmd: remove redundant wlock acquire/release...
r20102 update = False
Siddharth Agarwal
strip: hold wlock for entire duration...
r20096
Augie Fackler
formatting: blacken the codebase...
r43346 strip(
ui,
repo,
revs,
backup=backup,
update=update,
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 force=opts.get(b'force'),
Augie Fackler
formatting: blacken the codebase...
r43346 bookmarks=bookmarks,
Augie Fackler
formatting: byteify all mercurial/ and hgext/ string literals...
r43347 soft=opts[b'soft'],
Augie Fackler
formatting: blacken the codebase...
r43346 )
Pierre-Yves David
mq: extract strip function as its standalone extension (issue3824)...
r19826
return 0