From 78d39f98f3135bc9f7cbef897aeb4a279ca4130e Mon Sep 17 00:00:00 2001
From: Junio C Hamano <gitster@pobox.com>
Date: Mon, 10 Dec 2007 01:19:31 -0800
Subject: [PATCH] git-help -i: invoke info with document and node name

Signed-off-by: Junio C Hamano <gitster@pobox.com>
---
 help.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/help.c b/help.c
index 56477f4506a..9d7ad6f3194 100644
--- a/help.c
+++ b/help.c
@@ -286,7 +286,7 @@ static void show_man_page(const char *git_cmd)
 static void show_info_page(const char *git_cmd)
 {
 	const char *page = cmd_to_page(git_cmd);
-	execlp("info", "info", page, NULL);
+	execlp("info", "info", "gitman", page, NULL);
 }
 
 static void show_html_page(const char *git_cmd)