Summary
Gets all the changesets in the log.
- Assembly
- Mercurial
.Net .dll - Namespace
- Mercurial
- Containing Type
- Repository
Syntax
public IEnumerable<Changeset> Log(RevSpec set, LogCommand command = null)
Parameters
| Name | Type | Description |
|---|---|---|
| set | RevSpec |
The RevSpec that specifies the set of revisions
to include in the log. If null, return the whole log.
Default is null.
|
| command | LogCommand |
Any extra options to the log method, or null for default options.
|
Return Value
| Type | Description |
|---|---|
| IEnumerable |
A collection of Changeset instances.
|