summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-10-30 07:09:57 +0900
committerJunio C Hamano <gitster@pobox.com>2023-10-30 07:09:57 +0900
commit659763188861dcb723bf7e6f93608ae68c67933b (patch)
treedb6c5ffb9d23378dcd73b48f8265882a2e85252a
parent030c2fba90190f5c4fb2d18e12a0052c44feacc4 (diff)
parent48399e9cf0348060fc03df794dab587eaf14cc6e (diff)
downloadgit-659763188861dcb723bf7e6f93608ae68c67933b.tar.gz
Merge branch 'ni/die-message-fix-for-git-add'
Message updates. * ni/die-message-fix-for-git-add: builtin/add.c: clean up die() messages
-rw-r--r--builtin/add.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/builtin/add.c b/builtin/add.c
index c27254a5cd..5126d2ede3 100644
--- a/builtin/add.c
+++ b/builtin/add.c
@@ -182,7 +182,7 @@ static int edit_patch(int argc, const char **argv, const char *prefix)
git_config(git_diff_basic_config, NULL); /* no "diff" UI options */
if (repo_read_index(the_repository) < 0)
- die(_("Could not read the index"));
+ die(_("could not read the index"));
repo_init_revisions(the_repository, &rev, prefix);
rev.diffopt.context = 7;
@@ -200,15 +200,15 @@ static int edit_patch(int argc, const char **argv, const char *prefix)
die(_("editing patch failed"));
if (stat(file, &st))
- die_errno(_("Could not stat '%s'"), file);
+ die_errno(_("could not stat '%s'"), file);
if (!st.st_size)
- die(_("Empty patch. Aborted."));
+ die(_("empty patch. aborted"));
child.git_cmd = 1;
strvec_pushl(&child.args, "apply", "--recount", "--cached", file,
NULL);
if (run_command(&child))
- die(_("Could not apply '%s'"), file);
+ die(_("could not apply '%s'"), file);
unlink(file);
free(file);
@@ -568,7 +568,7 @@ int cmd_add(int argc, const char **argv, const char *prefix)
finish:
if (write_locked_index(&the_index, &lock_file,
COMMIT_LOCK | SKIP_IF_UNCHANGED))
- die(_("Unable to write new index file"));
+ die(_("unable to write new index file"));
dir_clear(&dir);
clear_pathspec(&pathspec);