Size: 467
Comment:
|
← Revision 8 as of 2017-03-26 20:35:15 ⇥
Size: 772
Comment: I just used it and saw mnfst returned NameError. Looking through the code I found its mf.
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
= debugshell = | <<Include(A:dev)>> <<Include(A:style)>> |
Line 3: | Line 4: |
Drop user into an interactive python shell along with the mercurial module, a repo object and its changelog and manifest. |
= debugshell extension = After enabling the extension, {{{"hg debugshell"}}} or {{{"hg dbsh"}}} will drop user into an interactive python shell along with the mercurial module, a repo object and its changelog & manifest. The extension is available in the main repo: contrib/debugshell.py |
Line 15: | Line 18: |
>>> mnfst | >>> mf |
Line 21: | Line 24: |
[[http://selenic.com/repo/hg/raw-file/tip/contrib/debugshell.py|Download]] ---- CategoryBundledExtension |
Note:
This page is primarily intended for developers of Mercurial.
|
debugshell extension
After enabling the extension, "hg debugshell" or "hg dbsh" will drop user into an interactive python shell along with the mercurial module, a repo object and its changelog & manifest.
The extension is available in the main repo: contrib/debugshell.py
$ hg debugshell loaded repo : /path/to/repo using source: /path/to/mercurial/source >>> repo <mercurial.localrepo.localrepository object at 0x0> >>> cl <mercurial.changelog.changelog object at 0x0> >>> mf <mercurial.manifest.manifest object at 0x0> >>> mercurial <proxied module 'mercurial'> >>>