blob: f815f23451b4fc8c8a88be0f9475890d8c84c60f [file] [log] [blame]
Johan Herland75ef3f42010-11-09 22:49:46 +01001#ifndef NOTES_MERGE_H
2#define NOTES_MERGE_H
3
Jacob Keller4d03dd12015-08-17 14:33:30 -07004#include "notes-utils.h"
5
Johan Herland809f38c2010-11-09 22:49:51 +01006#define NOTES_MERGE_WORKTREE "NOTES_MERGE_WORKTREE"
7
Johan Herland75ef3f42010-11-09 22:49:46 +01008enum notes_merge_verbosity {
9 NOTES_MERGE_VERBOSITY_DEFAULT = 2,
10 NOTES_MERGE_VERBOSITY_MAX = 5
11};
12
13struct notes_merge_options {
14 const char *local_ref;
15 const char *remote_ref;
Johan Herland443259c2010-11-09 22:49:53 +010016 struct strbuf commit_msg;
Johan Herland75ef3f42010-11-09 22:49:46 +010017 int verbosity;
Jacob Keller4d03dd12015-08-17 14:33:30 -070018 enum notes_merge_strategy strategy;
Johan Herland809f38c2010-11-09 22:49:51 +010019 unsigned has_worktree:1;
Johan Herland75ef3f42010-11-09 22:49:46 +010020};
21
22void init_notes_merge_options(struct notes_merge_options *o);
23
24/*
Johan Herland75ef3f42010-11-09 22:49:46 +010025 * Merge notes from o->remote_ref into o->local_ref
26 *
Johan Herland2085b162010-11-15 00:54:11 +010027 * The given notes_tree 'local_tree' must be the notes_tree referenced by the
28 * o->local_ref. This is the notes_tree in which the object-level merge is
29 * performed.
30 *
Johan Herland75ef3f42010-11-09 22:49:46 +010031 * The commits given by the two refs are merged, producing one of the following
32 * outcomes:
33 *
34 * 1. The merge trivially results in an existing commit (e.g. fast-forward or
Brandon Williams5237e0e2017-05-30 10:30:58 -070035 * already-up-to-date). 'local_tree' is untouched, the OID of the result
36 * is written into 'result_oid' and 0 is returned.
Johan Herland2085b162010-11-15 00:54:11 +010037 * 2. The merge successfully completes, producing a merge commit. local_tree
Brandon Williams5237e0e2017-05-30 10:30:58 -070038 * contains the updated notes tree, the OID of the resulting commit is
39 * written into 'result_oid', and 1 is returned.
Johan Herland809f38c2010-11-09 22:49:51 +010040 * 3. The merge results in conflicts. This is similar to #2 in that the
41 * partial merge result (i.e. merge result minus the unmerged entries)
Brandon Williams5237e0e2017-05-30 10:30:58 -070042 * are stored in 'local_tree', and the OID or the resulting commit
Johan Herland809f38c2010-11-09 22:49:51 +010043 * (to be amended when the conflicts have been resolved) is written into
Brandon Williams5237e0e2017-05-30 10:30:58 -070044 * 'result_oid'. The unmerged entries are written into the
Johan Herland809f38c2010-11-09 22:49:51 +010045 * .git/NOTES_MERGE_WORKTREE directory with conflict markers.
46 * -1 is returned.
Johan Herland75ef3f42010-11-09 22:49:46 +010047 *
48 * Both o->local_ref and o->remote_ref must be given (non-NULL), but either ref
49 * (although not both) may refer to a non-existing notes ref, in which case
50 * that notes ref is interpreted as an empty notes tree, and the merge
51 * trivially results in what the other ref points to.
52 */
53int notes_merge(struct notes_merge_options *o,
Johan Herland2085b162010-11-15 00:54:11 +010054 struct notes_tree *local_tree,
Brandon Williams5237e0e2017-05-30 10:30:58 -070055 struct object_id *result_oid);
Johan Herland75ef3f42010-11-09 22:49:46 +010056
Johan Herland6abb3652010-11-09 22:49:52 +010057/*
58 * Finalize conflict resolution from an earlier notes_merge()
59 *
60 * The given notes tree 'partial_tree' must be the notes_tree corresponding to
61 * the given 'partial_commit', the partial result commit created by a previous
62 * call to notes_merge().
63 *
64 * This function will add the (now resolved) notes in .git/NOTES_MERGE_WORKTREE
Brandon Williams5237e0e2017-05-30 10:30:58 -070065 * to 'partial_tree', and create a final notes merge commit, the OID of which
66 * will be stored in 'result_oid'.
Johan Herland6abb3652010-11-09 22:49:52 +010067 */
68int notes_merge_commit(struct notes_merge_options *o,
69 struct notes_tree *partial_tree,
70 struct commit *partial_commit,
Brandon Williams5237e0e2017-05-30 10:30:58 -070071 struct object_id *result_oid);
Johan Herland6abb3652010-11-09 22:49:52 +010072
73/*
74 * Abort conflict resolution from an earlier notes_merge()
75 *
76 * Removes the notes merge worktree in .git/NOTES_MERGE_WORKTREE.
77 */
78int notes_merge_abort(struct notes_merge_options *o);
79
Johan Herland75ef3f42010-11-09 22:49:46 +010080#endif