hgext/strip.py
changeset 29852 d5883fd055c6
parent 29205 a0939666b836
child 32376 46ba2cdda476
equal deleted inserted replaced
29851:4435d4c951ec 29852:d5883fd055c6
    21 nullid = nodemod.nullid
    21 nullid = nodemod.nullid
    22 release = lockmod.release
    22 release = lockmod.release
    23 
    23 
    24 cmdtable = {}
    24 cmdtable = {}
    25 command = cmdutil.command(cmdtable)
    25 command = cmdutil.command(cmdtable)
    26 # Note for extension authors: ONLY specify testedwith = 'internal' for
    26 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    27 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    27 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    28 # be specifying the version(s) of Mercurial they are tested with, or
    28 # be specifying the version(s) of Mercurial they are tested with, or
    29 # leave the attribute unspecified.
    29 # leave the attribute unspecified.
    30 testedwith = 'internal'
    30 testedwith = 'ships-with-hg-core'
    31 
    31 
    32 def checksubstate(repo, baserev=None):
    32 def checksubstate(repo, baserev=None):
    33     '''return list of subrepos at a different revision than substate.
    33     '''return list of subrepos at a different revision than substate.
    34     Abort if any subrepos have uncommitted changes.'''
    34     Abort if any subrepos have uncommitted changes.'''
    35     inclsubs = []
    35     inclsubs = []