namespace LibGit2Sharp.Core { internal enum GitErrorCode { Ok = 0, Error = -1, /// /// Input does not exist in the scope searched. /// NotFound = -3, /// /// Input already exists in the processed scope. /// Exists = -4, /// /// The given short oid is ambiguous. /// Ambiguous = -5, /// /// Buffer related issue. /// Buffer = -6, /// /// Callback error. /// User = -7, /// /// Operation cannot be performed against a bare repository. /// BareRepo = -8, /// /// Operation cannot be performed against an orphaned HEAD. /// OrphanedHead = -9, /// /// Operation cannot be performed against a not fully merged index. /// UnmergedEntries = -10, /// /// Push cannot be performed against the remote without losing commits. /// NonFastForward = -11, /// /// Input is not a valid specification. /// InvalidSpecification = -12, /// /// A conflicting change has been detected. /// MergeConflict = -13, /// /// Skip and passthrough the given ODB backend. /// PassThrough = -30, /// /// There are no more entries left to iterate. /// IterOver = -31, } }