MergeResult Enum

Summary

This enum is used by MergeCommand to signal the result of a merge command.
Assembly
Mercurial.Net.dll
Namespace
Mercurial
Interfaces
  • IComparable
  • IFormattable
  • IConvertible
Base Types
  • object
  • ValueType
  • Enum
graph TD Base0["Enum"]-->Type Base1["ValueType"]-->Base0 Base2["object"]-->Base1 Interface0["IComparable"]-.->Type Interface1["IFormattable"]-.->Type Interface2["IConvertible"]-.->Type Type["MergeResult"] class Type type-node

Syntax

public enum MergeResult

Fields

Name Constant Value Summary
Success 0
The merge was a success, no unresolved files, the working directory is ready to commit.
static
UnresolvedFiles 1
The merge was a partial success, there are unresolved files that needs to be resolved before the working directory is ready to commit.
static