ls-remote: document --refs option
[git.git] / builtin / notes.c
blob52aa9af74be8d47780d4762185c5cbe09624b382
1 /*
2 * Builtin "git notes"
4 * Copyright (c) 2010 Johan Herland <johan@herland.net>
6 * Based on git-notes.sh by Johannes Schindelin,
7 * and builtin/tag.c by Kristian Høgsberg and Carlos Rica.
8 */
10 #include "cache.h"
11 #include "builtin.h"
12 #include "notes.h"
13 #include "blob.h"
14 #include "commit.h"
15 #include "refs.h"
16 #include "exec_cmd.h"
17 #include "run-command.h"
18 #include "parse-options.h"
19 #include "string-list.h"
20 #include "notes-merge.h"
21 #include "notes-utils.h"
22 #include "worktree.h"
24 static const char * const git_notes_usage[] = {
25 N_("git notes [--ref <notes-ref>] [list [<object>]]"),
26 N_("git notes [--ref <notes-ref>] add [-f] [--allow-empty] [-m <msg> | -F <file> | (-c | -C) <object>] [<object>]"),
27 N_("git notes [--ref <notes-ref>] copy [-f] <from-object> <to-object>"),
28 N_("git notes [--ref <notes-ref>] append [--allow-empty] [-m <msg> | -F <file> | (-c | -C) <object>] [<object>]"),
29 N_("git notes [--ref <notes-ref>] edit [--allow-empty] [<object>]"),
30 N_("git notes [--ref <notes-ref>] show [<object>]"),
31 N_("git notes [--ref <notes-ref>] merge [-v | -q] [-s <strategy>] <notes-ref>"),
32 N_("git notes merge --commit [-v | -q]"),
33 N_("git notes merge --abort [-v | -q]"),
34 N_("git notes [--ref <notes-ref>] remove [<object>...]"),
35 N_("git notes [--ref <notes-ref>] prune [-n | -v]"),
36 N_("git notes [--ref <notes-ref>] get-ref"),
37 NULL
40 static const char * const git_notes_list_usage[] = {
41 N_("git notes [list [<object>]]"),
42 NULL
45 static const char * const git_notes_add_usage[] = {
46 N_("git notes add [<options>] [<object>]"),
47 NULL
50 static const char * const git_notes_copy_usage[] = {
51 N_("git notes copy [<options>] <from-object> <to-object>"),
52 N_("git notes copy --stdin [<from-object> <to-object>]..."),
53 NULL
56 static const char * const git_notes_append_usage[] = {
57 N_("git notes append [<options>] [<object>]"),
58 NULL
61 static const char * const git_notes_edit_usage[] = {
62 N_("git notes edit [<object>]"),
63 NULL
66 static const char * const git_notes_show_usage[] = {
67 N_("git notes show [<object>]"),
68 NULL
71 static const char * const git_notes_merge_usage[] = {
72 N_("git notes merge [<options>] <notes-ref>"),
73 N_("git notes merge --commit [<options>]"),
74 N_("git notes merge --abort [<options>]"),
75 NULL
78 static const char * const git_notes_remove_usage[] = {
79 N_("git notes remove [<object>]"),
80 NULL
83 static const char * const git_notes_prune_usage[] = {
84 N_("git notes prune [<options>]"),
85 NULL
88 static const char * const git_notes_get_ref_usage[] = {
89 N_("git notes get-ref"),
90 NULL
93 static const char note_template[] =
94 "\nWrite/edit the notes for the following object:\n";
96 struct note_data {
97 int given;
98 int use_editor;
99 char *edit_path;
100 struct strbuf buf;
103 static void free_note_data(struct note_data *d)
105 if (d->edit_path) {
106 unlink_or_warn(d->edit_path);
107 free(d->edit_path);
109 strbuf_release(&d->buf);
112 static int list_each_note(const unsigned char *object_sha1,
113 const unsigned char *note_sha1, char *note_path,
114 void *cb_data)
116 printf("%s %s\n", sha1_to_hex(note_sha1), sha1_to_hex(object_sha1));
117 return 0;
120 static void copy_obj_to_fd(int fd, const unsigned char *sha1)
122 unsigned long size;
123 enum object_type type;
124 char *buf = read_sha1_file(sha1, &type, &size);
125 if (buf) {
126 if (size)
127 write_or_die(fd, buf, size);
128 free(buf);
132 static void write_commented_object(int fd, const unsigned char *object)
134 const char *show_args[5] =
135 {"show", "--stat", "--no-notes", sha1_to_hex(object), NULL};
136 struct child_process show = CHILD_PROCESS_INIT;
137 struct strbuf buf = STRBUF_INIT;
138 struct strbuf cbuf = STRBUF_INIT;
140 /* Invoke "git show --stat --no-notes $object" */
141 show.argv = show_args;
142 show.no_stdin = 1;
143 show.out = -1;
144 show.err = 0;
145 show.git_cmd = 1;
146 if (start_command(&show))
147 die(_("unable to start 'show' for object '%s'"),
148 sha1_to_hex(object));
150 if (strbuf_read(&buf, show.out, 0) < 0)
151 die_errno(_("could not read 'show' output"));
152 strbuf_add_commented_lines(&cbuf, buf.buf, buf.len);
153 write_or_die(fd, cbuf.buf, cbuf.len);
155 strbuf_release(&cbuf);
156 strbuf_release(&buf);
158 if (finish_command(&show))
159 die(_("failed to finish 'show' for object '%s'"),
160 sha1_to_hex(object));
163 static void prepare_note_data(const unsigned char *object, struct note_data *d,
164 const unsigned char *old_note)
166 if (d->use_editor || !d->given) {
167 int fd;
168 struct strbuf buf = STRBUF_INIT;
170 /* write the template message before editing: */
171 d->edit_path = git_pathdup("NOTES_EDITMSG");
172 fd = open(d->edit_path, O_CREAT | O_TRUNC | O_WRONLY, 0600);
173 if (fd < 0)
174 die_errno(_("could not create file '%s'"), d->edit_path);
176 if (d->given)
177 write_or_die(fd, d->buf.buf, d->buf.len);
178 else if (old_note)
179 copy_obj_to_fd(fd, old_note);
181 strbuf_addch(&buf, '\n');
182 strbuf_add_commented_lines(&buf, note_template, strlen(note_template));
183 strbuf_addch(&buf, '\n');
184 write_or_die(fd, buf.buf, buf.len);
186 write_commented_object(fd, object);
188 close(fd);
189 strbuf_release(&buf);
190 strbuf_reset(&d->buf);
192 if (launch_editor(d->edit_path, &d->buf, NULL)) {
193 die(_("Please supply the note contents using either -m or -F option"));
195 strbuf_stripspace(&d->buf, 1);
199 static void write_note_data(struct note_data *d, unsigned char *sha1)
201 if (write_sha1_file(d->buf.buf, d->buf.len, blob_type, sha1)) {
202 error(_("unable to write note object"));
203 if (d->edit_path)
204 error(_("The note contents have been left in %s"),
205 d->edit_path);
206 exit(128);
210 static int parse_msg_arg(const struct option *opt, const char *arg, int unset)
212 struct note_data *d = opt->value;
214 strbuf_grow(&d->buf, strlen(arg) + 2);
215 if (d->buf.len)
216 strbuf_addch(&d->buf, '\n');
217 strbuf_addstr(&d->buf, arg);
218 strbuf_stripspace(&d->buf, 0);
220 d->given = 1;
221 return 0;
224 static int parse_file_arg(const struct option *opt, const char *arg, int unset)
226 struct note_data *d = opt->value;
228 if (d->buf.len)
229 strbuf_addch(&d->buf, '\n');
230 if (!strcmp(arg, "-")) {
231 if (strbuf_read(&d->buf, 0, 1024) < 0)
232 die_errno(_("cannot read '%s'"), arg);
233 } else if (strbuf_read_file(&d->buf, arg, 1024) < 0)
234 die_errno(_("could not open or read '%s'"), arg);
235 strbuf_stripspace(&d->buf, 0);
237 d->given = 1;
238 return 0;
241 static int parse_reuse_arg(const struct option *opt, const char *arg, int unset)
243 struct note_data *d = opt->value;
244 char *buf;
245 unsigned char object[20];
246 enum object_type type;
247 unsigned long len;
249 if (d->buf.len)
250 strbuf_addch(&d->buf, '\n');
252 if (get_sha1(arg, object))
253 die(_("Failed to resolve '%s' as a valid ref."), arg);
254 if (!(buf = read_sha1_file(object, &type, &len))) {
255 free(buf);
256 die(_("Failed to read object '%s'."), arg);
258 if (type != OBJ_BLOB) {
259 free(buf);
260 die(_("Cannot read note data from non-blob object '%s'."), arg);
262 strbuf_add(&d->buf, buf, len);
263 free(buf);
265 d->given = 1;
266 return 0;
269 static int parse_reedit_arg(const struct option *opt, const char *arg, int unset)
271 struct note_data *d = opt->value;
272 d->use_editor = 1;
273 return parse_reuse_arg(opt, arg, unset);
276 static int notes_copy_from_stdin(int force, const char *rewrite_cmd)
278 struct strbuf buf = STRBUF_INIT;
279 struct notes_rewrite_cfg *c = NULL;
280 struct notes_tree *t = NULL;
281 int ret = 0;
282 const char *msg = "Notes added by 'git notes copy'";
284 if (rewrite_cmd) {
285 c = init_copy_notes_for_rewrite(rewrite_cmd);
286 if (!c)
287 return 0;
288 } else {
289 init_notes(NULL, NULL, NULL, 0);
290 t = &default_notes_tree;
293 while (strbuf_getline(&buf, stdin, '\n') != EOF) {
294 unsigned char from_obj[20], to_obj[20];
295 struct strbuf **split;
296 int err;
298 split = strbuf_split(&buf, ' ');
299 if (!split[0] || !split[1])
300 die(_("Malformed input line: '%s'."), buf.buf);
301 strbuf_rtrim(split[0]);
302 strbuf_rtrim(split[1]);
303 if (get_sha1(split[0]->buf, from_obj))
304 die(_("Failed to resolve '%s' as a valid ref."), split[0]->buf);
305 if (get_sha1(split[1]->buf, to_obj))
306 die(_("Failed to resolve '%s' as a valid ref."), split[1]->buf);
308 if (rewrite_cmd)
309 err = copy_note_for_rewrite(c, from_obj, to_obj);
310 else
311 err = copy_note(t, from_obj, to_obj, force,
312 combine_notes_overwrite);
314 if (err) {
315 error(_("Failed to copy notes from '%s' to '%s'"),
316 split[0]->buf, split[1]->buf);
317 ret = 1;
320 strbuf_list_free(split);
323 if (!rewrite_cmd) {
324 commit_notes(t, msg);
325 free_notes(t);
326 } else {
327 finish_copy_notes_for_rewrite(c, msg);
329 return ret;
332 static struct notes_tree *init_notes_check(const char *subcommand)
334 struct notes_tree *t;
335 init_notes(NULL, NULL, NULL, 0);
336 t = &default_notes_tree;
338 if (!starts_with(t->ref, "refs/notes/"))
339 die("Refusing to %s notes in %s (outside of refs/notes/)",
340 subcommand, t->ref);
341 return t;
344 static int list(int argc, const char **argv, const char *prefix)
346 struct notes_tree *t;
347 unsigned char object[20];
348 const unsigned char *note;
349 int retval = -1;
350 struct option options[] = {
351 OPT_END()
354 if (argc)
355 argc = parse_options(argc, argv, prefix, options,
356 git_notes_list_usage, 0);
358 if (1 < argc) {
359 error(_("too many parameters"));
360 usage_with_options(git_notes_list_usage, options);
363 t = init_notes_check("list");
364 if (argc) {
365 if (get_sha1(argv[0], object))
366 die(_("Failed to resolve '%s' as a valid ref."), argv[0]);
367 note = get_note(t, object);
368 if (note) {
369 puts(sha1_to_hex(note));
370 retval = 0;
371 } else
372 retval = error(_("No note found for object %s."),
373 sha1_to_hex(object));
374 } else
375 retval = for_each_note(t, 0, list_each_note, NULL);
377 free_notes(t);
378 return retval;
381 static int append_edit(int argc, const char **argv, const char *prefix);
383 static int add(int argc, const char **argv, const char *prefix)
385 int force = 0, allow_empty = 0;
386 const char *object_ref;
387 struct notes_tree *t;
388 unsigned char object[20], new_note[20];
389 const unsigned char *note;
390 struct note_data d = { 0, 0, NULL, STRBUF_INIT };
391 struct option options[] = {
392 { OPTION_CALLBACK, 'm', "message", &d, N_("message"),
393 N_("note contents as a string"), PARSE_OPT_NONEG,
394 parse_msg_arg},
395 { OPTION_CALLBACK, 'F', "file", &d, N_("file"),
396 N_("note contents in a file"), PARSE_OPT_NONEG,
397 parse_file_arg},
398 { OPTION_CALLBACK, 'c', "reedit-message", &d, N_("object"),
399 N_("reuse and edit specified note object"), PARSE_OPT_NONEG,
400 parse_reedit_arg},
401 { OPTION_CALLBACK, 'C', "reuse-message", &d, N_("object"),
402 N_("reuse specified note object"), PARSE_OPT_NONEG,
403 parse_reuse_arg},
404 OPT_BOOL(0, "allow-empty", &allow_empty,
405 N_("allow storing empty note")),
406 OPT__FORCE(&force, N_("replace existing notes")),
407 OPT_END()
410 argc = parse_options(argc, argv, prefix, options, git_notes_add_usage,
411 PARSE_OPT_KEEP_ARGV0);
413 if (2 < argc) {
414 error(_("too many parameters"));
415 usage_with_options(git_notes_add_usage, options);
418 object_ref = argc > 1 ? argv[1] : "HEAD";
420 if (get_sha1(object_ref, object))
421 die(_("Failed to resolve '%s' as a valid ref."), object_ref);
423 t = init_notes_check("add");
424 note = get_note(t, object);
426 if (note) {
427 if (!force) {
428 free_notes(t);
429 if (d.given) {
430 free_note_data(&d);
431 return error(_("Cannot add notes. "
432 "Found existing notes for object %s. "
433 "Use '-f' to overwrite existing notes"),
434 sha1_to_hex(object));
437 * Redirect to "edit" subcommand.
439 * We only end up here if none of -m/-F/-c/-C or -f are
440 * given. The original args are therefore still in
441 * argv[0-1].
443 argv[0] = "edit";
444 return append_edit(argc, argv, prefix);
446 fprintf(stderr, _("Overwriting existing notes for object %s\n"),
447 sha1_to_hex(object));
450 prepare_note_data(object, &d, note);
451 if (d.buf.len || allow_empty) {
452 write_note_data(&d, new_note);
453 if (add_note(t, object, new_note, combine_notes_overwrite))
454 die("BUG: combine_notes_overwrite failed");
455 commit_notes(t, "Notes added by 'git notes add'");
456 } else {
457 fprintf(stderr, _("Removing note for object %s\n"),
458 sha1_to_hex(object));
459 remove_note(t, object);
460 commit_notes(t, "Notes removed by 'git notes add'");
463 free_note_data(&d);
464 free_notes(t);
465 return 0;
468 static int copy(int argc, const char **argv, const char *prefix)
470 int retval = 0, force = 0, from_stdin = 0;
471 const unsigned char *from_note, *note;
472 const char *object_ref;
473 unsigned char object[20], from_obj[20];
474 struct notes_tree *t;
475 const char *rewrite_cmd = NULL;
476 struct option options[] = {
477 OPT__FORCE(&force, N_("replace existing notes")),
478 OPT_BOOL(0, "stdin", &from_stdin, N_("read objects from stdin")),
479 OPT_STRING(0, "for-rewrite", &rewrite_cmd, N_("command"),
480 N_("load rewriting config for <command> (implies "
481 "--stdin)")),
482 OPT_END()
485 argc = parse_options(argc, argv, prefix, options, git_notes_copy_usage,
488 if (from_stdin || rewrite_cmd) {
489 if (argc) {
490 error(_("too many parameters"));
491 usage_with_options(git_notes_copy_usage, options);
492 } else {
493 return notes_copy_from_stdin(force, rewrite_cmd);
497 if (argc < 2) {
498 error(_("too few parameters"));
499 usage_with_options(git_notes_copy_usage, options);
501 if (2 < argc) {
502 error(_("too many parameters"));
503 usage_with_options(git_notes_copy_usage, options);
506 if (get_sha1(argv[0], from_obj))
507 die(_("Failed to resolve '%s' as a valid ref."), argv[0]);
509 object_ref = 1 < argc ? argv[1] : "HEAD";
511 if (get_sha1(object_ref, object))
512 die(_("Failed to resolve '%s' as a valid ref."), object_ref);
514 t = init_notes_check("copy");
515 note = get_note(t, object);
517 if (note) {
518 if (!force) {
519 retval = error(_("Cannot copy notes. Found existing "
520 "notes for object %s. Use '-f' to "
521 "overwrite existing notes"),
522 sha1_to_hex(object));
523 goto out;
525 fprintf(stderr, _("Overwriting existing notes for object %s\n"),
526 sha1_to_hex(object));
529 from_note = get_note(t, from_obj);
530 if (!from_note) {
531 retval = error(_("Missing notes on source object %s. Cannot "
532 "copy."), sha1_to_hex(from_obj));
533 goto out;
536 if (add_note(t, object, from_note, combine_notes_overwrite))
537 die("BUG: combine_notes_overwrite failed");
538 commit_notes(t, "Notes added by 'git notes copy'");
539 out:
540 free_notes(t);
541 return retval;
544 static int append_edit(int argc, const char **argv, const char *prefix)
546 int allow_empty = 0;
547 const char *object_ref;
548 struct notes_tree *t;
549 unsigned char object[20], new_note[20];
550 const unsigned char *note;
551 char logmsg[100];
552 const char * const *usage;
553 struct note_data d = { 0, 0, NULL, STRBUF_INIT };
554 struct option options[] = {
555 { OPTION_CALLBACK, 'm', "message", &d, N_("message"),
556 N_("note contents as a string"), PARSE_OPT_NONEG,
557 parse_msg_arg},
558 { OPTION_CALLBACK, 'F', "file", &d, N_("file"),
559 N_("note contents in a file"), PARSE_OPT_NONEG,
560 parse_file_arg},
561 { OPTION_CALLBACK, 'c', "reedit-message", &d, N_("object"),
562 N_("reuse and edit specified note object"), PARSE_OPT_NONEG,
563 parse_reedit_arg},
564 { OPTION_CALLBACK, 'C', "reuse-message", &d, N_("object"),
565 N_("reuse specified note object"), PARSE_OPT_NONEG,
566 parse_reuse_arg},
567 OPT_BOOL(0, "allow-empty", &allow_empty,
568 N_("allow storing empty note")),
569 OPT_END()
571 int edit = !strcmp(argv[0], "edit");
573 usage = edit ? git_notes_edit_usage : git_notes_append_usage;
574 argc = parse_options(argc, argv, prefix, options, usage,
575 PARSE_OPT_KEEP_ARGV0);
577 if (2 < argc) {
578 error(_("too many parameters"));
579 usage_with_options(usage, options);
582 if (d.given && edit)
583 fprintf(stderr, _("The -m/-F/-c/-C options have been deprecated "
584 "for the 'edit' subcommand.\n"
585 "Please use 'git notes add -f -m/-F/-c/-C' instead.\n"));
587 object_ref = 1 < argc ? argv[1] : "HEAD";
589 if (get_sha1(object_ref, object))
590 die(_("Failed to resolve '%s' as a valid ref."), object_ref);
592 t = init_notes_check(argv[0]);
593 note = get_note(t, object);
595 prepare_note_data(object, &d, edit ? note : NULL);
597 if (note && !edit) {
598 /* Append buf to previous note contents */
599 unsigned long size;
600 enum object_type type;
601 char *prev_buf = read_sha1_file(note, &type, &size);
603 strbuf_grow(&d.buf, size + 1);
604 if (d.buf.len && prev_buf && size)
605 strbuf_insert(&d.buf, 0, "\n", 1);
606 if (prev_buf && size)
607 strbuf_insert(&d.buf, 0, prev_buf, size);
608 free(prev_buf);
611 if (d.buf.len || allow_empty) {
612 write_note_data(&d, new_note);
613 if (add_note(t, object, new_note, combine_notes_overwrite))
614 die("BUG: combine_notes_overwrite failed");
615 snprintf(logmsg, sizeof(logmsg), "Notes added by 'git notes %s'",
616 argv[0]);
617 } else {
618 fprintf(stderr, _("Removing note for object %s\n"),
619 sha1_to_hex(object));
620 remove_note(t, object);
621 snprintf(logmsg, sizeof(logmsg), "Notes removed by 'git notes %s'",
622 argv[0]);
624 commit_notes(t, logmsg);
626 free_note_data(&d);
627 free_notes(t);
628 return 0;
631 static int show(int argc, const char **argv, const char *prefix)
633 const char *object_ref;
634 struct notes_tree *t;
635 unsigned char object[20];
636 const unsigned char *note;
637 int retval;
638 struct option options[] = {
639 OPT_END()
642 argc = parse_options(argc, argv, prefix, options, git_notes_show_usage,
645 if (1 < argc) {
646 error(_("too many parameters"));
647 usage_with_options(git_notes_show_usage, options);
650 object_ref = argc ? argv[0] : "HEAD";
652 if (get_sha1(object_ref, object))
653 die(_("Failed to resolve '%s' as a valid ref."), object_ref);
655 t = init_notes_check("show");
656 note = get_note(t, object);
658 if (!note)
659 retval = error(_("No note found for object %s."),
660 sha1_to_hex(object));
661 else {
662 const char *show_args[3] = {"show", sha1_to_hex(note), NULL};
663 retval = execv_git_cmd(show_args);
665 free_notes(t);
666 return retval;
669 static int merge_abort(struct notes_merge_options *o)
671 int ret = 0;
674 * Remove .git/NOTES_MERGE_PARTIAL and .git/NOTES_MERGE_REF, and call
675 * notes_merge_abort() to remove .git/NOTES_MERGE_WORKTREE.
678 if (delete_ref("NOTES_MERGE_PARTIAL", NULL, 0))
679 ret += error("Failed to delete ref NOTES_MERGE_PARTIAL");
680 if (delete_ref("NOTES_MERGE_REF", NULL, REF_NODEREF))
681 ret += error("Failed to delete ref NOTES_MERGE_REF");
682 if (notes_merge_abort(o))
683 ret += error("Failed to remove 'git notes merge' worktree");
684 return ret;
687 static int merge_commit(struct notes_merge_options *o)
689 struct strbuf msg = STRBUF_INIT;
690 unsigned char sha1[20], parent_sha1[20];
691 struct notes_tree *t;
692 struct commit *partial;
693 struct pretty_print_context pretty_ctx;
694 void *local_ref_to_free;
695 int ret;
698 * Read partial merge result from .git/NOTES_MERGE_PARTIAL,
699 * and target notes ref from .git/NOTES_MERGE_REF.
702 if (get_sha1("NOTES_MERGE_PARTIAL", sha1))
703 die("Failed to read ref NOTES_MERGE_PARTIAL");
704 else if (!(partial = lookup_commit_reference(sha1)))
705 die("Could not find commit from NOTES_MERGE_PARTIAL.");
706 else if (parse_commit(partial))
707 die("Could not parse commit from NOTES_MERGE_PARTIAL.");
709 if (partial->parents)
710 hashcpy(parent_sha1, partial->parents->item->object.oid.hash);
711 else
712 hashclr(parent_sha1);
714 t = xcalloc(1, sizeof(struct notes_tree));
715 init_notes(t, "NOTES_MERGE_PARTIAL", combine_notes_overwrite, 0);
717 o->local_ref = local_ref_to_free =
718 resolve_refdup("NOTES_MERGE_REF", 0, sha1, NULL);
719 if (!o->local_ref)
720 die("Failed to resolve NOTES_MERGE_REF");
722 if (notes_merge_commit(o, t, partial, sha1))
723 die("Failed to finalize notes merge");
725 /* Reuse existing commit message in reflog message */
726 memset(&pretty_ctx, 0, sizeof(pretty_ctx));
727 format_commit_message(partial, "%s", &msg, &pretty_ctx);
728 strbuf_trim(&msg);
729 strbuf_insert(&msg, 0, "notes: ", 7);
730 update_ref(msg.buf, o->local_ref, sha1,
731 is_null_sha1(parent_sha1) ? NULL : parent_sha1,
732 0, UPDATE_REFS_DIE_ON_ERR);
734 free_notes(t);
735 strbuf_release(&msg);
736 ret = merge_abort(o);
737 free(local_ref_to_free);
738 return ret;
741 static int git_config_get_notes_strategy(const char *key,
742 enum notes_merge_strategy *strategy)
744 const char *value;
746 if (git_config_get_string_const(key, &value))
747 return 1;
748 if (parse_notes_merge_strategy(value, strategy))
749 git_die_config(key, "unknown notes merge strategy %s", value);
751 return 0;
754 static int merge(int argc, const char **argv, const char *prefix)
756 struct strbuf remote_ref = STRBUF_INIT, msg = STRBUF_INIT;
757 unsigned char result_sha1[20];
758 struct notes_tree *t;
759 struct notes_merge_options o;
760 int do_merge = 0, do_commit = 0, do_abort = 0;
761 int verbosity = 0, result;
762 const char *strategy = NULL;
763 struct option options[] = {
764 OPT_GROUP(N_("General options")),
765 OPT__VERBOSITY(&verbosity),
766 OPT_GROUP(N_("Merge options")),
767 OPT_STRING('s', "strategy", &strategy, N_("strategy"),
768 N_("resolve notes conflicts using the given strategy "
769 "(manual/ours/theirs/union/cat_sort_uniq)")),
770 OPT_GROUP(N_("Committing unmerged notes")),
771 { OPTION_SET_INT, 0, "commit", &do_commit, NULL,
772 N_("finalize notes merge by committing unmerged notes"),
773 PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, 1},
774 OPT_GROUP(N_("Aborting notes merge resolution")),
775 { OPTION_SET_INT, 0, "abort", &do_abort, NULL,
776 N_("abort notes merge"),
777 PARSE_OPT_NOARG | PARSE_OPT_NONEG, NULL, 1},
778 OPT_END()
781 argc = parse_options(argc, argv, prefix, options,
782 git_notes_merge_usage, 0);
784 if (strategy || do_commit + do_abort == 0)
785 do_merge = 1;
786 if (do_merge + do_commit + do_abort != 1) {
787 error("cannot mix --commit, --abort or -s/--strategy");
788 usage_with_options(git_notes_merge_usage, options);
791 if (do_merge && argc != 1) {
792 error("Must specify a notes ref to merge");
793 usage_with_options(git_notes_merge_usage, options);
794 } else if (!do_merge && argc) {
795 error("too many parameters");
796 usage_with_options(git_notes_merge_usage, options);
799 init_notes_merge_options(&o);
800 o.verbosity = verbosity + NOTES_MERGE_VERBOSITY_DEFAULT;
802 if (do_abort)
803 return merge_abort(&o);
804 if (do_commit)
805 return merge_commit(&o);
807 o.local_ref = default_notes_ref();
808 strbuf_addstr(&remote_ref, argv[0]);
809 expand_notes_ref(&remote_ref);
810 o.remote_ref = remote_ref.buf;
812 t = init_notes_check("merge");
814 if (strategy) {
815 if (parse_notes_merge_strategy(strategy, &o.strategy)) {
816 error("Unknown -s/--strategy: %s", strategy);
817 usage_with_options(git_notes_merge_usage, options);
819 } else {
820 struct strbuf merge_key = STRBUF_INIT;
821 const char *short_ref = NULL;
823 if (!skip_prefix(o.local_ref, "refs/notes/", &short_ref))
824 die("BUG: local ref %s is outside of refs/notes/",
825 o.local_ref);
827 strbuf_addf(&merge_key, "notes.%s.mergeStrategy", short_ref);
829 if (git_config_get_notes_strategy(merge_key.buf, &o.strategy))
830 git_config_get_notes_strategy("notes.mergeStrategy", &o.strategy);
832 strbuf_release(&merge_key);
835 strbuf_addf(&msg, "notes: Merged notes from %s into %s",
836 remote_ref.buf, default_notes_ref());
837 strbuf_add(&(o.commit_msg), msg.buf + 7, msg.len - 7); /* skip "notes: " */
839 result = notes_merge(&o, t, result_sha1);
841 if (result >= 0) /* Merge resulted (trivially) in result_sha1 */
842 /* Update default notes ref with new commit */
843 update_ref(msg.buf, default_notes_ref(), result_sha1, NULL,
844 0, UPDATE_REFS_DIE_ON_ERR);
845 else { /* Merge has unresolved conflicts */
846 char *existing;
847 /* Update .git/NOTES_MERGE_PARTIAL with partial merge result */
848 update_ref(msg.buf, "NOTES_MERGE_PARTIAL", result_sha1, NULL,
849 0, UPDATE_REFS_DIE_ON_ERR);
850 /* Store ref-to-be-updated into .git/NOTES_MERGE_REF */
851 existing = find_shared_symref("NOTES_MERGE_REF", default_notes_ref());
852 if (existing)
853 die(_("A notes merge into %s is already in-progress at %s"),
854 default_notes_ref(), existing);
855 if (create_symref("NOTES_MERGE_REF", default_notes_ref(), NULL))
856 die("Failed to store link to current notes ref (%s)",
857 default_notes_ref());
858 printf("Automatic notes merge failed. Fix conflicts in %s and "
859 "commit the result with 'git notes merge --commit', or "
860 "abort the merge with 'git notes merge --abort'.\n",
861 git_path(NOTES_MERGE_WORKTREE));
864 free_notes(t);
865 strbuf_release(&remote_ref);
866 strbuf_release(&msg);
867 return result < 0; /* return non-zero on conflicts */
870 #define IGNORE_MISSING 1
872 static int remove_one_note(struct notes_tree *t, const char *name, unsigned flag)
874 int status;
875 unsigned char sha1[20];
876 if (get_sha1(name, sha1))
877 return error(_("Failed to resolve '%s' as a valid ref."), name);
878 status = remove_note(t, sha1);
879 if (status)
880 fprintf(stderr, _("Object %s has no note\n"), name);
881 else
882 fprintf(stderr, _("Removing note for object %s\n"), name);
883 return (flag & IGNORE_MISSING) ? 0 : status;
886 static int remove_cmd(int argc, const char **argv, const char *prefix)
888 unsigned flag = 0;
889 int from_stdin = 0;
890 struct option options[] = {
891 OPT_BIT(0, "ignore-missing", &flag,
892 N_("attempt to remove non-existent note is not an error"),
893 IGNORE_MISSING),
894 OPT_BOOL(0, "stdin", &from_stdin,
895 N_("read object names from the standard input")),
896 OPT_END()
898 struct notes_tree *t;
899 int retval = 0;
901 argc = parse_options(argc, argv, prefix, options,
902 git_notes_remove_usage, 0);
904 t = init_notes_check("remove");
906 if (!argc && !from_stdin) {
907 retval = remove_one_note(t, "HEAD", flag);
908 } else {
909 while (*argv) {
910 retval |= remove_one_note(t, *argv, flag);
911 argv++;
914 if (from_stdin) {
915 struct strbuf sb = STRBUF_INIT;
916 while (strbuf_getwholeline(&sb, stdin, '\n') != EOF) {
917 strbuf_rtrim(&sb);
918 retval |= remove_one_note(t, sb.buf, flag);
920 strbuf_release(&sb);
922 if (!retval)
923 commit_notes(t, "Notes removed by 'git notes remove'");
924 free_notes(t);
925 return retval;
928 static int prune(int argc, const char **argv, const char *prefix)
930 struct notes_tree *t;
931 int show_only = 0, verbose = 0;
932 struct option options[] = {
933 OPT__DRY_RUN(&show_only, "do not remove, show only"),
934 OPT__VERBOSE(&verbose, "report pruned notes"),
935 OPT_END()
938 argc = parse_options(argc, argv, prefix, options, git_notes_prune_usage,
941 if (argc) {
942 error(_("too many parameters"));
943 usage_with_options(git_notes_prune_usage, options);
946 t = init_notes_check("prune");
948 prune_notes(t, (verbose ? NOTES_PRUNE_VERBOSE : 0) |
949 (show_only ? NOTES_PRUNE_VERBOSE|NOTES_PRUNE_DRYRUN : 0) );
950 if (!show_only)
951 commit_notes(t, "Notes removed by 'git notes prune'");
952 free_notes(t);
953 return 0;
956 static int get_ref(int argc, const char **argv, const char *prefix)
958 struct option options[] = { OPT_END() };
959 argc = parse_options(argc, argv, prefix, options,
960 git_notes_get_ref_usage, 0);
962 if (argc) {
963 error("too many parameters");
964 usage_with_options(git_notes_get_ref_usage, options);
967 puts(default_notes_ref());
968 return 0;
971 int cmd_notes(int argc, const char **argv, const char *prefix)
973 int result;
974 const char *override_notes_ref = NULL;
975 struct option options[] = {
976 OPT_STRING(0, "ref", &override_notes_ref, N_("notes-ref"),
977 N_("use notes from <notes-ref>")),
978 OPT_END()
981 git_config(git_default_config, NULL);
982 argc = parse_options(argc, argv, prefix, options, git_notes_usage,
983 PARSE_OPT_STOP_AT_NON_OPTION);
985 if (override_notes_ref) {
986 struct strbuf sb = STRBUF_INIT;
987 strbuf_addstr(&sb, override_notes_ref);
988 expand_notes_ref(&sb);
989 setenv("GIT_NOTES_REF", sb.buf, 1);
990 strbuf_release(&sb);
993 if (argc < 1 || !strcmp(argv[0], "list"))
994 result = list(argc, argv, prefix);
995 else if (!strcmp(argv[0], "add"))
996 result = add(argc, argv, prefix);
997 else if (!strcmp(argv[0], "copy"))
998 result = copy(argc, argv, prefix);
999 else if (!strcmp(argv[0], "append") || !strcmp(argv[0], "edit"))
1000 result = append_edit(argc, argv, prefix);
1001 else if (!strcmp(argv[0], "show"))
1002 result = show(argc, argv, prefix);
1003 else if (!strcmp(argv[0], "merge"))
1004 result = merge(argc, argv, prefix);
1005 else if (!strcmp(argv[0], "remove"))
1006 result = remove_cmd(argc, argv, prefix);
1007 else if (!strcmp(argv[0], "prune"))
1008 result = prune(argc, argv, prefix);
1009 else if (!strcmp(argv[0], "get-ref"))
1010 result = get_ref(argc, argv, prefix);
1011 else {
1012 result = error(_("Unknown subcommand: %s"), argv[0]);
1013 usage_with_options(git_notes_usage, options);
1016 return result ? 1 : 0;