4 enum notes_merge_verbosity
{
5 NOTES_MERGE_VERBOSITY_DEFAULT
= 2,
6 NOTES_MERGE_VERBOSITY_MAX
= 5
9 struct notes_merge_options
{
10 const char *local_ref
;
11 const char *remote_ref
;
15 void init_notes_merge_options(struct notes_merge_options
*o
);
18 * Create new notes commit from the given notes tree
20 * Properties of the created commit:
21 * - tree: the result of converting t to a tree object with write_notes_tree().
22 * - parents: the given parents OR (if NULL) the commit referenced by t->ref.
23 * - author/committer: the default determined by commmit_tree().
24 * - commit message: msg
26 * The resulting commit SHA1 is stored in result_sha1.
28 void create_notes_commit(struct notes_tree
*t
, struct commit_list
*parents
,
29 const char *msg
, unsigned char *result_sha1
);
32 * Merge notes from o->remote_ref into o->local_ref
34 * The commits given by the two refs are merged, producing one of the following
37 * 1. The merge trivially results in an existing commit (e.g. fast-forward or
38 * already-up-to-date). The SHA1 of the result is written into 'result_sha1'
40 * 2. The merge fails. result_sha1 is set to null_sha1, and non-zero returned.
42 * Both o->local_ref and o->remote_ref must be given (non-NULL), but either ref
43 * (although not both) may refer to a non-existing notes ref, in which case
44 * that notes ref is interpreted as an empty notes tree, and the merge
45 * trivially results in what the other ref points to.
47 int notes_merge(struct notes_merge_options
*o
,
48 unsigned char *result_sha1
);