From: Tom Kunze <mail@tom-kunze.de>
To: git@vger.kernel.org
Subject: [PATCH] help: show help for aliases
Date: Fri, 10 Feb 2017 01:17:53 +0100 [thread overview]
Message-ID: <137f35a4-ec2e-b8aa-c6a5-b17688eca61a@tomabrafix.de> (raw)
If an alias is a single git command show the man page of the
aliased git command with --help.
Signed-off-by: Tom Kunze <mail@tom-kunze.de>
---
Hi,
I noticed that when I pass --help to an alias which is only a git
command it tells me a information about the alias. But it would be
nice if it instead opens the corresponding man page of the command.
There is a memory leak but in my opinion it can be ignored because
the process will be replaced anyway.
Regards,
Tom Kunze
PS: Please add me to cc as I am not subscribed.
builtin/help.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/builtin/help.c b/builtin/help.c
index 49f7a07..655ed49 100644
--- a/builtin/help.c
+++ b/builtin/help.c
@@ -437,6 +437,10 @@ static const char *check_git_cmd(const char* cmd)
alias = alias_lookup(cmd);
if (alias) {
+ if (alias[0] != '!') {
+ strtok(alias, " \t\n");
+ return alias;
+ }
printf_ln(_("`git %s' is aliased to `%s'"), cmd, alias);
free(alias);
exit(0);
--
2.1.4
next reply other threads:[~2017-02-10 1:33 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-10 0:17 Tom Kunze [this message]
2017-02-10 1:46 ` [PATCH] help: show help for aliases Junio C Hamano
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=137f35a4-ec2e-b8aa-c6a5-b17688eca61a@tomabrafix.de \
--to=mail@tom-kunze.de \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox