@@ -763,7 +763,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
763
763
struct commit * c ;
764
764
c = lookup_commit_reference_by_name (squash_message );
765
765
if (!c )
766
- die (_ ("could not lookup commit %s " ), squash_message );
766
+ die (_ ("could not lookup commit '%s' " ), squash_message );
767
767
ctx .output_encoding = get_commit_output_encoding ();
768
768
repo_format_commit_message (the_repository , c ,
769
769
"squash! %s\n\n" , & sb ,
@@ -798,7 +798,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
798
798
char * fmt ;
799
799
commit = lookup_commit_reference_by_name (fixup_commit );
800
800
if (!commit )
801
- die (_ ("could not lookup commit %s " ), fixup_commit );
801
+ die (_ ("could not lookup commit '%s' " ), fixup_commit );
802
802
ctx .output_encoding = get_commit_output_encoding ();
803
803
fmt = xstrfmt ("%s! %%s\n\n" , fixup_prefix );
804
804
repo_format_commit_message (the_repository , commit , fmt , & sb ,
@@ -1189,7 +1189,7 @@ static const char *read_commit_message(const char *name)
1189
1189
1190
1190
commit = lookup_commit_reference_by_name (name );
1191
1191
if (!commit )
1192
- die (_ ("could not lookup commit %s " ), name );
1192
+ die (_ ("could not lookup commit '%s' " ), name );
1193
1193
out_enc = get_commit_output_encoding ();
1194
1194
return repo_logmsg_reencode (the_repository , commit , NULL , out_enc );
1195
1195
}
0 commit comments