Method | Description | |
---|---|---|
AddRemoveFiles ( ) : void |
Adds all unversioned files and remove all versioned files.
|
|
Combine ( ) : string |
Creates the combined path of the specified directories.
|
|
Commit ( string message ) : bool |
Commits the pending changes.
|
|
CreateChangelist ( ) : IEnumerable |
Creates a change list by listing all changes made since the last release.
|
|
Dispose ( ) : void | ||
Hg ( |
Constructs a new repository. It creates a new repository if the folder doesn't exists, otherwise it gets the current status of the repository.
|
|
Push ( ) : void |
Pushes all committed changes to the server.
|
|
Tag ( string tagName, bool force = false ) : void |
Adds a tag to the last revision.
|
|
Update ( string branchName ) : void |
Updates the repository by the branch name.
|
Method | Description | |
---|---|---|
RunHg ( string command ) : void |
Runs a HG command. In addition it prints errors and messages to trace.
|
|
RunHg ( string command, Action |
Run a HG command which the specific callback for errors or messages returned from the command.
|
|
RunListeningHg ( string command ) : string[] |
Runs a HG command and returns all its errors and messages output.
|
public Commit ( string message ) : bool | ||
message | string | Description of the changes/the commit. |
return | bool |
public Hg ( |
||
repositoryUri | The URI of this repository | |
localDir | string | The local directory which contains the repository files |
return | System |
public Tag ( string tagName, bool force = false ) : void | ||
tagName | string | The tag to add. |
force | bool | /// If set to true will overwrite existing labels of this name see "hg help tag" and its --force parameter. /// |
return | void |