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.
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"
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"),
40 static const char * const git_notes_list_usage
[] = {
41 N_("git notes [list [<object>]]"),
45 static const char * const git_notes_add_usage
[] = {
46 N_("git notes add [<options>] [<object>]"),
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>]..."),
56 static const char * const git_notes_append_usage
[] = {
57 N_("git notes append [<options>] [<object>]"),
61 static const char * const git_notes_edit_usage
[] = {
62 N_("git notes edit [<object>]"),
66 static const char * const git_notes_show_usage
[] = {
67 N_("git notes show [<object>]"),
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>]"),
78 static const char * const git_notes_remove_usage
[] = {
79 N_("git notes remove [<object>]"),
83 static const char * const git_notes_prune_usage
[] = {
84 N_("git notes prune [<options>]"),
88 static const char * const git_notes_get_ref_usage
[] = {
89 N_("git notes get-ref"),
93 static const char note_template
[] =
94 "\nWrite/edit the notes for the following object:\n";
103 static void free_note_data(struct note_data
*d
)
106 unlink_or_warn(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
,
116 printf("%s %s\n", sha1_to_hex(note_sha1
), sha1_to_hex(object_sha1
));
120 static void copy_obj_to_fd(int fd
, const unsigned char *sha1
)
123 enum object_type type
;
124 char *buf
= read_sha1_file(sha1
, &type
, &size
);
127 write_or_die(fd
, buf
, size
);
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
;
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
) {
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);
174 die_errno(_("could not create file '%s'"), d
->edit_path
);
177 write_or_die(fd
, d
->buf
.buf
, d
->buf
.len
);
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
);
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"));
204 error(_("The note contents have been left in %s"),
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);
216 strbuf_addch(&d
->buf
, '\n');
217 strbuf_addstr(&d
->buf
, arg
);
218 strbuf_stripspace(&d
->buf
, 0);
224 static int parse_file_arg(const struct option
*opt
, const char *arg
, int unset
)
226 struct note_data
*d
= opt
->value
;
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);
241 static int parse_reuse_arg(const struct option
*opt
, const char *arg
, int unset
)
243 struct note_data
*d
= opt
->value
;
245 unsigned char object
[20];
246 enum object_type type
;
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
))) {
256 die(_("Failed to read object '%s'."), arg
);
258 if (type
!= OBJ_BLOB
) {
260 die(_("Cannot read note data from non-blob object '%s'."), arg
);
262 strbuf_add(&d
->buf
, buf
, len
);
269 static int parse_reedit_arg(const struct option
*opt
, const char *arg
, int unset
)
271 struct note_data
*d
= opt
->value
;
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
;
282 const char *msg
= "Notes added by 'git notes copy'";
285 c
= init_copy_notes_for_rewrite(rewrite_cmd
);
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
;
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
);
309 err
= copy_note_for_rewrite(c
, from_obj
, to_obj
);
311 err
= copy_note(t
, from_obj
, to_obj
, force
,
312 combine_notes_overwrite
);
315 error(_("Failed to copy notes from '%s' to '%s'"),
316 split
[0]->buf
, split
[1]->buf
);
320 strbuf_list_free(split
);
324 commit_notes(t
, msg
);
327 finish_copy_notes_for_rewrite(c
, msg
);
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/)",
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
;
350 struct option options
[] = {
355 argc
= parse_options(argc
, argv
, prefix
, options
,
356 git_notes_list_usage
, 0);
359 error(_("too many parameters"));
360 usage_with_options(git_notes_list_usage
, options
);
363 t
= init_notes_check("list");
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
);
369 puts(sha1_to_hex(note
));
372 retval
= error(_("No note found for object %s."),
373 sha1_to_hex(object
));
375 retval
= for_each_note(t
, 0, list_each_note
, NULL
);
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
,
395 { OPTION_CALLBACK
, 'F', "file", &d
, N_("file"),
396 N_("note contents in a file"), PARSE_OPT_NONEG
,
398 { OPTION_CALLBACK
, 'c', "reedit-message", &d
, N_("object"),
399 N_("reuse and edit specified note object"), PARSE_OPT_NONEG
,
401 { OPTION_CALLBACK
, 'C', "reuse-message", &d
, N_("object"),
402 N_("reuse specified note object"), PARSE_OPT_NONEG
,
404 OPT_BOOL(0, "allow-empty", &allow_empty
,
405 N_("allow storing empty note")),
406 OPT__FORCE(&force
, N_("replace existing notes")),
410 argc
= parse_options(argc
, argv
, prefix
, options
, git_notes_add_usage
,
411 PARSE_OPT_KEEP_ARGV0
);
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
);
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
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'");
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'");
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 "
485 argc
= parse_options(argc
, argv
, prefix
, options
, git_notes_copy_usage
,
488 if (from_stdin
|| rewrite_cmd
) {
490 error(_("too many parameters"));
491 usage_with_options(git_notes_copy_usage
, options
);
493 return notes_copy_from_stdin(force
, rewrite_cmd
);
498 error(_("too few parameters"));
499 usage_with_options(git_notes_copy_usage
, options
);
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
);
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
));
525 fprintf(stderr
, _("Overwriting existing notes for object %s\n"),
526 sha1_to_hex(object
));
529 from_note
= get_note(t
, from_obj
);
531 retval
= error(_("Missing notes on source object %s. Cannot "
532 "copy."), sha1_to_hex(from_obj
));
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'");
544 static int append_edit(int argc
, const char **argv
, const char *prefix
)
547 const char *object_ref
;
548 struct notes_tree
*t
;
549 unsigned char object
[20], new_note
[20];
550 const unsigned char *note
;
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
,
558 { OPTION_CALLBACK
, 'F', "file", &d
, N_("file"),
559 N_("note contents in a file"), PARSE_OPT_NONEG
,
561 { OPTION_CALLBACK
, 'c', "reedit-message", &d
, N_("object"),
562 N_("reuse and edit specified note object"), PARSE_OPT_NONEG
,
564 { OPTION_CALLBACK
, 'C', "reuse-message", &d
, N_("object"),
565 N_("reuse specified note object"), PARSE_OPT_NONEG
,
567 OPT_BOOL(0, "allow-empty", &allow_empty
,
568 N_("allow storing empty note")),
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
);
578 error(_("too many parameters"));
579 usage_with_options(usage
, options
);
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
);
598 /* Append buf to previous note contents */
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
);
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'",
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'",
624 commit_notes(t
, logmsg
);
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
;
638 struct option options
[] = {
642 argc
= parse_options(argc
, argv
, prefix
, options
, git_notes_show_usage
,
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
);
659 retval
= error(_("No note found for object %s."),
660 sha1_to_hex(object
));
662 const char *show_args
[3] = {"show", sha1_to_hex(note
), NULL
};
663 retval
= execv_git_cmd(show_args
);
669 static int merge_abort(struct notes_merge_options
*o
)
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");
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
;
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
);
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
);
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
);
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
);
735 strbuf_release(&msg
);
736 ret
= merge_abort(o
);
737 free(local_ref_to_free
);
741 static int git_config_get_notes_strategy(const char *key
,
742 enum notes_merge_strategy
*strategy
)
746 if (git_config_get_string_const(key
, &value
))
748 if (parse_notes_merge_strategy(value
, strategy
))
749 git_die_config(key
, "unknown notes merge strategy %s", value
);
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},
781 argc
= parse_options(argc
, argv
, prefix
, options
,
782 git_notes_merge_usage
, 0);
784 if (strategy
|| do_commit
+ do_abort
== 0)
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
;
803 return merge_abort(&o
);
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");
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
);
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/",
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 */
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());
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
));
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
)
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
);
880 fprintf(stderr
, _("Object %s has no note\n"), name
);
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
)
890 struct option options
[] = {
891 OPT_BIT(0, "ignore-missing", &flag
,
892 N_("attempt to remove non-existent note is not an error"),
894 OPT_BOOL(0, "stdin", &from_stdin
,
895 N_("read object names from the standard input")),
898 struct notes_tree
*t
;
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
);
910 retval
|= remove_one_note(t
, *argv
, flag
);
915 struct strbuf sb
= STRBUF_INIT
;
916 while (strbuf_getwholeline(&sb
, stdin
, '\n') != EOF
) {
918 retval
|= remove_one_note(t
, sb
.buf
, flag
);
923 commit_notes(t
, "Notes removed by 'git notes remove'");
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"),
938 argc
= parse_options(argc
, argv
, prefix
, options
, git_notes_prune_usage
,
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) );
951 commit_notes(t
, "Notes removed by 'git notes prune'");
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);
963 error("too many parameters");
964 usage_with_options(git_notes_get_ref_usage
, options
);
967 puts(default_notes_ref());
971 int cmd_notes(int argc
, const char **argv
, const char *prefix
)
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>")),
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);
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
);
1012 result
= error(_("Unknown subcommand: %s"), argv
[0]);
1013 usage_with_options(git_notes_usage
, options
);
1016 return result
? 1 : 0;