rename git-browse--help to git-help--browse

The convention for helper scripts has been
git-$TOOL--$HELPER. Since this is a "browse" helper for the
"help" tool, git-help--browse is a more sensible name.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King
2007-12-16 02:21:04 -05:00
committed by Junio C Hamano
parent 6ba78238a8
commit d7e522cffb
5 changed files with 5 additions and 5 deletions

2
help.c
View File

@ -331,7 +331,7 @@ static void show_info_page(const char *git_cmd)
static void show_html_page(const char *git_cmd)
{
const char *page = cmd_to_page(git_cmd);
execl_git_cmd("browse--help", page, NULL);
execl_git_cmd("help--browse", page, NULL);
}
void help_unknown_cmd(const char *cmd)