Jeff King [off-list ref] writes:
On Tue, Aug 04, 2020 at 08:50:16PM +0300, Sergey Organov wrote:
[...]
quoted
+ } else {
+ die("--diff-merges: unknown value '%s'.", optarg);
+ }
A few nits:
I missed this the first time, sorry!
- we usually don't have a period at the end of our error messages
Oops, I got the dot from
die("--unpacked=<packfile> no longer supported.");
in the same file. Will fix.
- this should probably be marked for translation, i.e.,
die(_("translated message"), optarg)
OK, will do.
- I think other similar messages are more like:
unknown value for --diff-merges: %s
Thanks, I'll change wording to this one.
-- Sergey