C# Class Mercurial.RepositorySummary

This class contains a summary of the repository state, as returned by the SummaryCommand.
Mostrar archivo Open project: TargetProcess/Target-Process-Plugins Class Usage Examples

Public Methods

Method Description
Parse ( string standardOutput ) : RepositorySummary

Parses the standard output from executing a 'hg summary' command and returns a RepositorySummary.

Private Methods

Method Description
ParseBranch ( RepositorySummary summary, string line, Match match ) : void

Parses the branch: line from the summary command.

ParseCommit ( RepositorySummary summary, string line, Match match ) : void

Parses the commit: line from the summary command.

ParseParents ( RepositorySummary summary, string line, Match match ) : void

Parses the parent: line from the summary command.

ParseUpdate ( RepositorySummary summary, string line, Match match ) : void

Parses the update: line from the summary command.

Method Details

Parse() public static method

Parses the standard output from executing a 'hg summary' command and returns a RepositorySummary.
/// is null. ///
public static Parse ( string standardOutput ) : RepositorySummary
standardOutput string /// The standard output from a 'hg summary' command that is to be parsed. ///
return RepositorySummary