Differences between revisions 6 and 7
Revision 6 as of 2012-11-04 02:36:57
Size: 776
Editor: mpm
Comment:
Revision 7 as of 2012-11-06 22:53:44
Size: 775
Editor: abuehl
Comment: fix category
Deletions are marked like this. Additions are marked like this.
Line 28: Line 28:
CategoryBundledExtensions CategoryBundledExtension

Note:

This page is primarily intended for developers of Mercurial.

{i} This page does not meet our wiki style guidelines. Please help improve this page by cleaning up its formatting.

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>
>>> mnfst
<mercurial.manifest.manifest object at 0x0>
>>> mercurial
<proxied module 'mercurial'>
>>> 

Download


CategoryBundledExtension

debugshellExtension (last edited 2017-03-26 20:35:15 by PulkitGoyal)