Skip to content

Commit 5079cc8

Browse files
committed
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
2 parents ceb7a01 + b3a8076 commit 5079cc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin/help.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ static const char *check_git_cmd(const char* cmd)
441441

442442
alias = alias_lookup(cmd);
443443
if (alias) {
444-
printf_ln(_("`git %s' is aliased to `%s'"), cmd, alias);
444+
printf_ln(_("'%s' is aliased to '%s'"), cmd, alias);
445445
free(alias);
446446
exit(0);
447447
}

0 commit comments

Comments
 (0)