summaryrefslogtreecommitdiff
path: root/include/git2/tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/git2/tree.h')
-rw-r--r--include/git2/tree.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/git2/tree.h b/include/git2/tree.h
index 95e0fdf94..c338da092 100644
--- a/include/git2/tree.h
+++ b/include/git2/tree.h
@@ -316,9 +316,14 @@ GIT_EXTERN(int) git_tree_walk(git_tree *tree, git_treewalk_cb callback, int mode
/** @} */
typedef enum {
+ GIT_STATUS_UNMODIFIED = 0,
GIT_STATUS_ADDED = 1,
GIT_STATUS_DELETED = 2,
GIT_STATUS_MODIFIED = 3,
+ GIT_STATUS_RENAMED = 4,
+ GIT_STATUS_COPIED = 5,
+ GIT_STATUS_IGNORED = 6,
+ GIT_STATUS_UNTRACKED = 7
} git_status_t;
typedef struct {