I want to fetch all the commits with their changeset after a particular commit id or time. Is there any straight way to do that using Mercurial API?
|
feedback
|
|
As you probably know, there's no stable Python-level API for Mercurial. The command line is really the only supported API (unless you use a wrapper library like JavaHg or python-hglib). So on the command line you would run
to get all changesets after Using JavaHg, you would instantiate a
You can then iterate through the
Finally, if you import the Mercurial code directly you can do
to get an iterator yielding The above focused on looking up by a changeset ID or revision number. If you want to lookup by date, then you'll need to call the equivalent of
In JavaHg you can just use the | |||
|
feedback
|