From b3a8076e0d9319be38d786a0bffc50c4248a0d3e Mon Sep 17 00:00:00 2001 From: Kaartic Sivaraam Date: Tue, 12 Sep 2017 16:44:06 +0530 Subject: help: change a message to be more precise When the user tries to use '--help' option on an aliased command information about the alias is printed as sshown below, $ git co --help `git co' is aliased to `checkout' This doesn't seem correct as the user has aliased only 'co' and not 'git co'. This might even be incorrect in cases in which the user has used an alias like 'tgit'. $ tgit co --help `git co' is aliased to `checkout' So, make the message more precise. Signed-off-by: Kaartic Sivaraam Signed-off-by: Junio C Hamano diff --git a/builtin/help.c b/builtin/help.c index 334a849..dbe45c5 100644 --- a/builtin/help.c +++ b/builtin/help.c @@ -438,7 +438,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); } -- cgit v0.10.2-6-g49f6