Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-09-25 09:24:07 +0300
committerJunio C Hamano <gitster@pobox.com>2017-09-25 09:24:07 +0300
commit5079cc82cbcdb204b978c2fceab3d96cfe78e0e5 (patch)
tree13835d592386d0f4fcc30cf89f136d149178f1b1 /builtin/help.c
parentceb7a01aac907f124ca9bc0d768336e7c0aaa944 (diff)
parentb3a8076e0d9319be38d786a0bffc50c4248a0d3e (diff)
Merge branch 'ks/help-alias-label'
"git help co" now says "co is aliased to ...", not "git co is". * ks/help-alias-label: help: change a message to be more precise
Diffstat (limited to 'builtin/help.c')
-rw-r--r--builtin/help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/help.c b/builtin/help.c
index b3f60a8f30..d3c8fc4082 100644
--- a/builtin/help.c
+++ b/builtin/help.c
@@ -441,7 +441,7 @@ static const char *check_git_cmd(const char* cmd)
alias = alias_lookup(cmd);
if (alias) {
- printf_ln(_("`git %s' is aliased to `%s'"), cmd, alias);
+ printf_ln(_("'%s' is aliased to '%s'"), cmd, alias);
free(alias);
exit(0);
}