diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-12-10 10:35:29 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-12-10 10:36:31 +0100 |
commit | a149a1a44af45352b63e2dadd790616966c220be (patch) | |
tree | 43cd050895442e26fcb074131491ce3cecbc9586 /help.c | |
parent | git-help -i: invoke info with document and node name (diff) | |
download | git-a149a1a44af45352b63e2dadd790616966c220be.tar.xz git-a149a1a44af45352b63e2dadd790616966c220be.zip |
git-help -i: show info documentation from matching version of git
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | help.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -286,6 +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); + setenv("INFOPATH", GIT_INFO_PATH, 1); execlp("info", "info", "gitman", page, NULL); } |