summaryrefslogtreecommitdiff
path: root/notes-utils.h
diff options
context:
space:
mode:
authorJacob Keller <jacob.keller@gmail.com>2015-08-17 21:33:30 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-08-17 22:36:23 (GMT)
commit4d03dd18f0860d4052fab5ce7779e4bba302e5fc (patch)
treef27054d4b2ef3831bbb9975e001e00beb99016b7 /notes-utils.h
parente48ad1b9b1d862dd0aad3a21c7e6ca5ec68c024c (diff)
downloadgit-4d03dd18f0860d4052fab5ce7779e4bba302e5fc.zip
git-4d03dd18f0860d4052fab5ce7779e4bba302e5fc.tar.gz
git-4d03dd18f0860d4052fab5ce7779e4bba302e5fc.tar.bz2
notes: extract enum notes_merge_strategy to notes-utils.h
A future patch will extract parsing of the --strategy string into a helper function in notes.c and will require the enumeration definition. Signed-off-by: Jacob Keller <jacob.keller@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'notes-utils.h')
-rw-r--r--notes-utils.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/notes-utils.h b/notes-utils.h
index 890ddb3..db5811e 100644
--- a/notes-utils.h
+++ b/notes-utils.h
@@ -19,6 +19,14 @@ void create_notes_commit(struct notes_tree *t, struct commit_list *parents,
void commit_notes(struct notes_tree *t, const char *msg);
+enum notes_merge_strategy {
+ NOTES_MERGE_RESOLVE_MANUAL = 0,
+ NOTES_MERGE_RESOLVE_OURS,
+ NOTES_MERGE_RESOLVE_THEIRS,
+ NOTES_MERGE_RESOLVE_UNION,
+ NOTES_MERGE_RESOLVE_CAT_SORT_UNIQ
+};
+
struct notes_rewrite_cfg {
struct notes_tree **trees;
const char *cmd;