diff options
author | Junio C Hamano <gitster@pobox.com> | 2024-03-16 00:05:59 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-03-16 00:05:59 +0100 |
commit | 8e663afb95ba0da55246a1ae28292c687e8f4888 (patch) | |
tree | 2aaa82dd499ce15841cdf8efdec7607ce1bcf149 /revision.c | |
parent | Merge branch 'kh/branch-ref-syntax-advice' (diff) | |
parent | revision.c: trivial fix to message (diff) | |
download | git-8e663afb95ba0da55246a1ae28292c687e8f4888.tar.xz git-8e663afb95ba0da55246a1ae28292c687e8f4888.zip |
Merge branch 'as/option-names-in-messages'
Error message updates.
* as/option-names-in-messages:
revision.c: trivial fix to message
builtin/clone.c: trivial fix of message
builtin/remote.c: trivial fix of error message
transport-helper.c: trivial fix of error message
Diffstat (limited to 'revision.c')
-rw-r--r-- | revision.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/revision.c b/revision.c index 45893651c2..d6436ee66b 100644 --- a/revision.c +++ b/revision.c @@ -2358,7 +2358,7 @@ static int handle_revision_opt(struct rev_info *revs, int argc, const char **arg } else if (skip_prefix(arg, "--ancestry-path=", &optarg)) { struct commit *c; struct object_id oid; - const char *msg = _("could not get commit for ancestry-path argument %s"); + const char *msg = _("could not get commit for --ancestry-path argument %s"); revs->ancestry_path = 1; revs->simplify_history = 0; |