equal
deleted
inserted
replaced
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 = [] |