diff options
author | Junio C Hamano <gitster@pobox.com> | 2007-12-10 01:35:29 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-12-10 01:36:31 -0800 |
commit | a149a1a44af45352b63e2dadd790616966c220be (patch) | |
tree | 43cd050895442e26fcb074131491ce3cecbc9586 /help.c | |
parent | 78d39f98f3135bc9f7cbef897aeb4a279ca4130e (diff) | |
download | git-a149a1a44af45352b63e2dadd790616966c220be.tar.gz git-a149a1a44af45352b63e2dadd790616966c220be.tar.xz |
git-help -i: show info documentation from matching version of git
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'help.c')
-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); } |