hgext/shelve.py
changeset 29841 d5883fd055c6
parent 29536 b17a6e3cd2ac
child 30378 c5126aab9c37
child 30419 819f96b82fa4
equal deleted inserted replaced
29840:4435d4c951ec 29841:d5883fd055c6
    52     rebase,
    52     rebase,
    53 )
    53 )
    54 
    54 
    55 cmdtable = {}
    55 cmdtable = {}
    56 command = cmdutil.command(cmdtable)
    56 command = cmdutil.command(cmdtable)
    57 # Note for extension authors: ONLY specify testedwith = 'internal' for
    57 # Note for extension authors: ONLY specify testedwith = 'ships-with-hg-core' for
    58 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    58 # extensions which SHIP WITH MERCURIAL. Non-mainline extensions should
    59 # be specifying the version(s) of Mercurial they are tested with, or
    59 # be specifying the version(s) of Mercurial they are tested with, or
    60 # leave the attribute unspecified.
    60 # leave the attribute unspecified.
    61 testedwith = 'internal'
    61 testedwith = 'ships-with-hg-core'
    62 
    62 
    63 backupdir = 'shelve-backup'
    63 backupdir = 'shelve-backup'
    64 shelvedir = 'shelved'
    64 shelvedir = 'shelved'
    65 
    65 
    66 class shelvedfile(object):
    66 class shelvedfile(object):