]> git.ipfire.org Git - thirdparty/git.git/commitdiff
surround %s with quotes when failed to lookup commit
authorTeng Long <dyroneteng@gmail.com>
Mon, 29 May 2023 13:27:56 +0000 (21:27 +0800)
committerJunio C Hamano <gitster@pobox.com>
Sat, 3 Jun 2023 00:01:10 +0000 (09:01 +0900)
The output may become confusing to recognize if the user
accidentally gave an extra opening space, like:

   $ git commit --fixup=" 6d6360b67e99c2fd82d64619c971fdede98ee74b"
   fatal: could not lookup commit  6d6360b67e99c2fd82d64619c971fdede98ee74b

and it will be better if we surround the %s specifier with single quotes.

Signed-off-by: Teng Long <dyroneteng@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/commit.c
builtin/merge-tree.c

index e67c4be2211eed8f6c8d61f510adc2fc87d9b007..9ab57ea1aaa06d3a66d64f505ed5ad7507713da0 100644 (file)
@@ -763,7 +763,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
                        struct commit *c;
                        c = lookup_commit_reference_by_name(squash_message);
                        if (!c)
-                               die(_("could not lookup commit %s"), squash_message);
+                               die(_("could not lookup commit '%s'"), squash_message);
                        ctx.output_encoding = get_commit_output_encoding();
                        repo_format_commit_message(the_repository, c,
                                                   "squash! %s\n\n", &sb,
@@ -798,7 +798,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
                char *fmt;
                commit = lookup_commit_reference_by_name(fixup_commit);
                if (!commit)
-                       die(_("could not lookup commit %s"), fixup_commit);
+                       die(_("could not lookup commit '%s'"), fixup_commit);
                ctx.output_encoding = get_commit_output_encoding();
                fmt = xstrfmt("%s! %%s\n\n", fixup_prefix);
                repo_format_commit_message(the_repository, commit, fmt, &sb,
@@ -1189,7 +1189,7 @@ static const char *read_commit_message(const char *name)
 
        commit = lookup_commit_reference_by_name(name);
        if (!commit)
-               die(_("could not lookup commit %s"), name);
+               die(_("could not lookup commit '%s'"), name);
        out_enc = get_commit_output_encoding();
        return repo_logmsg_reencode(the_repository, commit, NULL, out_enc);
 }
index b8f8a8b5d9fb15e9f1225b3650faa7124c869877..4325897a809bac36d9579bf55a4af45a7c77fd2d 100644 (file)
@@ -448,7 +448,7 @@ static int real_merge(struct merge_tree_options *o,
 
                base_commit = lookup_commit_reference_by_name(merge_base);
                if (!base_commit)
-                       die(_("could not lookup commit %s"), merge_base);
+                       die(_("could not lookup commit '%s'"), merge_base);
 
                opt.ancestor = merge_base;
                base_tree = repo_get_commit_tree(the_repository, base_commit);