Summary
This class contains a summary of the repository state, as returned by the
SummaryCommand
.
- Assembly
- Mercurial
.Net .dll - Namespace
- Mercurial
- Base Types
-
- object
graph TD
Base0["object"]-->Type
Type["RepositorySummary"]
class Type type-node
Syntax
public class RepositorySummary
Constructors
Name | Summary |
---|---|
RepositorySummary |
Properties
Name | Value | Summary |
---|---|---|
Branch | string |
Gets the name of the branch the current working folder is on.
|
IsInMerge | bool |
Gets a value indicating whether the current working directory is currently in a pending merge.
|
Number |
int |
Gets the number of modified files in the working directory.
|
Number |
int |
Gets the number of new changesets that exists in the history following the one that the
working state is at.
|
NumberOfUnknownFiles | int |
Gets the number of unknown files in the working directory.
|
Number |
int |
Gets the number of unresolved files in the currently pending merge.
|
Parent |
IEnumerable |
Gets the collection of parent revision numbers for the current working folder.
|
RawOutput | string |
Gets the raw output from the
hg summary command.
|
UpdatePossible | bool |
Gets a value indicating whether an update is possible to perform, basically the working
directory is not at the head.
|
Methods
Name | Value | Summary |
---|---|---|
Parse |
RepositorySummary |
Parses the standard output from executing a 'hg summary' command
and returns a
RepositorySummary .
static
|