summaryrefslogtreecommitdiff
path: root/include/git2/repository.h
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2012-10-27 09:30:03 +0200
committernulltoken <emeric.fermas@gmail.com>2012-10-27 16:45:59 +0200
commit31966d20e3fcfb7283884e477fbbaf0cffd81c37 (patch)
tree6adcc122f19ea3aca47f3ff844c385899a2c1dd5 /include/git2/repository.h
parent00e161b977e9ca8529736e8222dff50111b6f898 (diff)
downloadlibgit2-31966d20e3fcfb7283884e477fbbaf0cffd81c37.tar.gz
repo: enhance git_repository_state() detection
Diffstat (limited to 'include/git2/repository.h')
-rw-r--r--include/git2/repository.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/git2/repository.h b/include/git2/repository.h
index d72431538..4d122265c 100644
--- a/include/git2/repository.h
+++ b/include/git2/repository.h
@@ -574,6 +574,12 @@ typedef enum {
GIT_REPOSITORY_STATE_MERGE,
GIT_REPOSITORY_STATE_REVERT,
GIT_REPOSITORY_STATE_CHERRY_PICK,
+ GIT_REPOSITORY_STATE_BISECT,
+ GIT_REPOSITORY_STATE_REBASE,
+ GIT_REPOSITORY_STATE_REBASE_INTERACTIVE,
+ GIT_REPOSITORY_STATE_REBASE_MERGE,
+ GIT_REPOSITORY_STATE_APPLY_MAILBOX,
+ GIT_REPOSITORY_STATE_APPLY_MAILBOX_OR_REBASE,
} git_repository_state_t;
/**