summaryrefslogtreecommitdiff
path: root/include/git2/repository.h
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2015-11-20 13:19:23 -0500
committerCarlos Martín Nieto <cmn@dwim.me>2015-11-20 13:19:23 -0500
commit2ea40fdaac2a3b6ceabb02f17734d14831fd3470 (patch)
treeca5e95d300372078993a46b958e61a5b7dfde14f /include/git2/repository.h
parent69d1494873ee170ae33c37943c75bf7fa1c9d89d (diff)
downloadlibgit2-2ea40fdaac2a3b6ceabb02f17734d14831fd3470.tar.gz
repository: distinguish sequencer cherry-pick and revertcmn/repository-state-sequencer
These are not quite like their plain counterparts and require special handling.
Diffstat (limited to 'include/git2/repository.h')
-rw-r--r--include/git2/repository.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/git2/repository.h b/include/git2/repository.h
index cf268ef85..85b7e6861 100644
--- a/include/git2/repository.h
+++ b/include/git2/repository.h
@@ -675,7 +675,9 @@ typedef enum {
GIT_REPOSITORY_STATE_NONE,
GIT_REPOSITORY_STATE_MERGE,
GIT_REPOSITORY_STATE_REVERT,
+ GIT_REPOSITORY_STATE_REVERT_SEQUENCE,
GIT_REPOSITORY_STATE_CHERRYPICK,
+ GIT_REPOSITORY_STATE_CHERRYPICK_SEQUENCE,
GIT_REPOSITORY_STATE_BISECT,
GIT_REPOSITORY_STATE_REBASE,
GIT_REPOSITORY_STATE_REBASE_INTERACTIVE,