Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> --- builtin/notes.c | 8 +++++--- t/t3301-notes.sh | 10 ++++++++++ 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/builtin/notes.c b/builtin/notes.c index 3644d14..9840269 100644 --- a/builtin/notes.c +++ b/builtin/notes.c @@ -98,6 +98,7 @@ struct msg_arg { int given; int use_editor; struct strbuf buf; + enum object_type type; }; static int list_each_note(const unsigned char *object_sha1, @@ -211,7 +212,7 @@ static void create_note(const unsigned char *object, struct msg_arg *msg, sha1_to_hex(object)); hashclr(result); } else { - if (write_sha1_file(msg->buf.buf, msg->buf.len, blob_type, result)) { + if (write_sha1_file(msg->buf.buf, msg->buf.len, typename(msg->type), result)) { error(_("unable to write note object")); if (path) error(_("The note contents has been left in %s"), @@ -278,6 +279,7 @@ static int parse_reuse_arg(const struct option *opt, const char *arg, int unset) free(buf); msg->given = 1; + msg->type = type; return 0; } @@ -529,7 +531,7 @@ static int add(int argc, const char **argv, const char *prefix) unsigned char object[20], new_note[20]; char logmsg[100]; const unsigned char *note; - struct msg_arg msg = { 0, 0, STRBUF_INIT }; + struct msg_arg msg = { 0, 0, STRBUF_INIT, OBJ_BLOB }; struct option options[] = { { OPTION_CALLBACK, 'm', "message", &msg, "msg", "note contents as a string", PARSE_OPT_NONEG, @@ -686,7 +688,7 @@ static int append_edit(int argc, const char **argv, const char *prefix) const unsigned char *note; char logmsg[100]; const char * const *usage; - struct msg_arg msg = { 0, 0, STRBUF_INIT }; + struct msg_arg msg = { 0, 0, STRBUF_INIT, OBJ_BLOB }; struct option options[] = { { OPTION_CALLBACK, 'm', "message", &msg, "msg", "note contents as a string", PARSE_OPT_NONEG, diff --git a/t/t3301-notes.sh b/t/t3301-notes.sh index 16de05a..d3fd341 100755 --- a/t/t3301-notes.sh +++ b/t/t3301-notes.sh @@ -1222,4 +1222,14 @@ test_expect_success 'git notes get-ref (--ref)' ' test "$(GIT_NOTES_REF=refs/notes/bar git notes --ref=baz get-ref)" = "refs/notes/baz" ' +test_expect_success 'add -C happily takes object of any kind' ' + git notes add -f -C HEAD^{tree} +' + +test_expect_success 'non-blobs notes are shown in human-readable form' ' + git notes show HEAD >actual && + git show `git rev-parse HEAD^{tree}` >expected && + test_cmp expected actual +' + test_done -- 1.7.8.36.g69ee2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html