namespace LibGit2Sharp { /// /// Disambiguates the different versions of an index entry during a merge. /// public enum StageLevel { /// /// The standard fully merged state for an index entry. /// Staged = 0, /// /// Version of the entry as it was in the common base merge commit. /// Ancestor = 1, /// /// Version of the entry as it is in the commit of the Head. /// Ours = 2, /// /// Version of the entry as it is in the commit being merged. /// Theirs = 3, } }