diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-09-25 15:24:07 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-09-25 15:24:07 +0900 |
commit | 5079cc82cbcdb204b978c2fceab3d96cfe78e0e5 (patch) | |
tree | 13835d592386d0f4fcc30cf89f136d149178f1b1 /builtin | |
parent | ceb7a01aac907f124ca9bc0d768336e7c0aaa944 (diff) | |
parent | b3a8076e0d9319be38d786a0bffc50c4248a0d3e (diff) | |
download | git-5079cc82cbcdb204b978c2fceab3d96cfe78e0e5.tar.gz git-5079cc82cbcdb204b978c2fceab3d96cfe78e0e5.tar.xz |
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')
-rw-r--r-- | builtin/help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/help.c b/builtin/help.c index b3f60a8f3..d3c8fc408 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); } |