RepositorySummary Class

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.
NumberOfModifiedFiles int
Gets the number of modified files in the working directory.
NumberOfNewChangesets 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.
NumberOfUnresolvedFiles int
Gets the number of unresolved files in the currently pending merge.
ParentRevisionNumbers IEnumerable<T>
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(string) RepositorySummary
Parses the standard output from executing a 'hg summary' command and returns a RepositorySummary.
static