##// END OF EJS Templates
util: move diff_parent from logcmdutil to diffutil...
util: move diff_parent from logcmdutil to diffutil This function will be used outside of the log command (in templatekw, used by hgweb, for which logcmdutil is not available). Let's move this function together with the rest of the diff-related utils instead.

File last commit:

r49730:6000f5b2 default
r52036:d6e5bec5 default
Show More
strip.py
21 lines | 914 B | text/x-python | PythonLexer
Valentin Gatien-Baron
strip: move into core...
r46477 """strip changesets and their descendants from history (DEPRECATED)
The functionality of this extension has been included in core Mercurial
since version 5.7. Please use :hg:`debugstrip ...` instead.
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
Valentin Gatien-Baron
strip: move into core...
r46477 from mercurial import commands
Augie Fackler
formatting: blacken the codebase...
r43346
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
Valentin Gatien-Baron
strip: move into core...
r46477 # This is a bit ugly, but a uisetup function that defines strip as an
# alias for debugstrip would override any user alias for strip,
# including aliases like "strip = strip --no-backup".
commands.command.rename(old=b'debugstrip', new=b'debugstrip|strip')