help: change a message to be more precise
commitb3a8076e0d9319be38d786a0bffc50c4248a0d3e
authorKaartic Sivaraam <kaarticsivaraam91196@gmail.com>
Tue, 12 Sep 2017 11:14:06 +0000 (12 16:44 +0530)
committerJunio C Hamano <gitster@pobox.com>
Thu, 14 Sep 2017 06:01:47 +0000 (14 15:01 +0900)
tree13bd2c5edc65f03218f4cdd4205720d7a3d5963b
parent94c9fd268d4287f6fbfef84793288479905a7e48
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 <kaarticsivaraam91196@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/help.c