Enum git_object_t
The type of a Git object.
Namespace: Dogged.Native
Assembly: Dogged.Native.dll
Syntax
public enum git_object_t : int
Fields
Name | Description |
---|---|
GIT_OBJECT_ANY | When looking up an object, search for objects of any type. |
GIT_OBJECT_BLOB | A blob (file) object. |
GIT_OBJECT_COMMIT | A commit object. |
GIT_OBJECT_INVALID | The object is invalid. |
GIT_OBJECT_OFS_DELTA | A delta base; the base is given by an offset. |
GIT_OBJECT_REF_DELTA | A delta base; the base is given by a reference. |
GIT_OBJECT_TAG | An annotated tag object. |
GIT_OBJECT_TREE | A tree object (directory listing). |