add --html-path to get the location of installed HTML docs
This can be used in GUIs to open installed HTML documentation in the browser. Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
e96f3689ec
commit
89a56bfbd3
@ -9,7 +9,7 @@ git - the stupid content tracker
|
|||||||
SYNOPSIS
|
SYNOPSIS
|
||||||
--------
|
--------
|
||||||
[verse]
|
[verse]
|
||||||
'git' [--version] [--exec-path[=GIT_EXEC_PATH]]
|
'git' [--version] [--exec-path[=GIT_EXEC_PATH]] [--html-path]
|
||||||
[-p|--paginate|--no-pager]
|
[-p|--paginate|--no-pager]
|
||||||
[--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE]
|
[--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE]
|
||||||
[--help] COMMAND [ARGS]
|
[--help] COMMAND [ARGS]
|
||||||
@ -178,6 +178,10 @@ help ...`.
|
|||||||
environment variable. If no path is given, 'git' will print
|
environment variable. If no path is given, 'git' will print
|
||||||
the current setting and then exit.
|
the current setting and then exit.
|
||||||
|
|
||||||
|
--html-path::
|
||||||
|
Print the path to wherever your git HTML documentation is installed
|
||||||
|
and exit.
|
||||||
|
|
||||||
-p::
|
-p::
|
||||||
--paginate::
|
--paginate::
|
||||||
Pipe all output into 'less' (or if set, $PAGER).
|
Pipe all output into 'less' (or if set, $PAGER).
|
||||||
|
1
Makefile
1
Makefile
@ -1191,6 +1191,7 @@ strip: $(PROGRAMS) git$X
|
|||||||
|
|
||||||
git.o: git.c common-cmds.h GIT-CFLAGS
|
git.o: git.c common-cmds.h GIT-CFLAGS
|
||||||
$(QUIET_CC)$(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \
|
$(QUIET_CC)$(CC) -DGIT_VERSION='"$(GIT_VERSION)"' \
|
||||||
|
'-DGIT_HTML_PATH="$(htmldir_SQ)"' \
|
||||||
$(ALL_CFLAGS) -c $(filter %.c,$^)
|
$(ALL_CFLAGS) -c $(filter %.c,$^)
|
||||||
|
|
||||||
git$X: git.o $(BUILTIN_OBJS) $(GITLIBS)
|
git$X: git.o $(BUILTIN_OBJS) $(GITLIBS)
|
||||||
|
@ -1870,6 +1870,7 @@ _git ()
|
|||||||
--bare
|
--bare
|
||||||
--version
|
--version
|
||||||
--exec-path
|
--exec-path
|
||||||
|
--html-path
|
||||||
--work-tree=
|
--work-tree=
|
||||||
--help
|
--help
|
||||||
"
|
"
|
||||||
|
5
git.c
5
git.c
@ -5,7 +5,7 @@
|
|||||||
#include "run-command.h"
|
#include "run-command.h"
|
||||||
|
|
||||||
const char git_usage_string[] =
|
const char git_usage_string[] =
|
||||||
"git [--version] [--exec-path[=GIT_EXEC_PATH]] [-p|--paginate|--no-pager] [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE] [--help] COMMAND [ARGS]";
|
"git [--version] [--exec-path[=GIT_EXEC_PATH]] [--html-path] [-p|--paginate|--no-pager] [--bare] [--git-dir=GIT_DIR] [--work-tree=GIT_WORK_TREE] [--help] COMMAND [ARGS]";
|
||||||
|
|
||||||
const char git_more_info_string[] =
|
const char git_more_info_string[] =
|
||||||
"See 'git help COMMAND' for more information on a specific command.";
|
"See 'git help COMMAND' for more information on a specific command.";
|
||||||
@ -75,6 +75,9 @@ static int handle_options(const char*** argv, int* argc, int* envchanged)
|
|||||||
puts(git_exec_path());
|
puts(git_exec_path());
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
} else if (!strcmp(cmd, "--html-path")) {
|
||||||
|
puts(system_path(GIT_HTML_PATH));
|
||||||
|
exit(0);
|
||||||
} else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
|
} else if (!strcmp(cmd, "-p") || !strcmp(cmd, "--paginate")) {
|
||||||
use_pager = 1;
|
use_pager = 1;
|
||||||
} else if (!strcmp(cmd, "--no-pager")) {
|
} else if (!strcmp(cmd, "--no-pager")) {
|
||||||
|
12
perl/Git.pm
12
perl/Git.pm
@ -56,7 +56,7 @@ require Exporter;
|
|||||||
@EXPORT_OK = qw(command command_oneline command_noisy
|
@EXPORT_OK = qw(command command_oneline command_noisy
|
||||||
command_output_pipe command_input_pipe command_close_pipe
|
command_output_pipe command_input_pipe command_close_pipe
|
||||||
command_bidi_pipe command_close_bidi_pipe
|
command_bidi_pipe command_close_bidi_pipe
|
||||||
version exec_path hash_object git_cmd_try
|
version exec_path html_path hash_object git_cmd_try
|
||||||
remote_refs
|
remote_refs
|
||||||
temp_acquire temp_release temp_reset temp_path);
|
temp_acquire temp_release temp_reset temp_path);
|
||||||
|
|
||||||
@ -492,6 +492,16 @@ C<git --exec-path>). Useful mostly only internally.
|
|||||||
sub exec_path { command_oneline('--exec-path') }
|
sub exec_path { command_oneline('--exec-path') }
|
||||||
|
|
||||||
|
|
||||||
|
=item html_path ()
|
||||||
|
|
||||||
|
Return path to the Git html documentation (the same as
|
||||||
|
C<git --html-path>). Useful mostly only internally.
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
|
sub html_path { command_oneline('--html-path') }
|
||||||
|
|
||||||
|
|
||||||
=item repo_path ()
|
=item repo_path ()
|
||||||
|
|
||||||
Return path to the git repository. Must be called on a repository instance.
|
Return path to the git repository. Must be called on a repository instance.
|
||||||
|
Reference in New Issue
Block a user