X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=perl%2FGit.pm;h=291ff5b53c1883ee8fce67fbb7e2b32393ef0800;hb=d1f6c18bd6ea5fd373f9f6356e02854678ffa0fd;hp=7d7f2b1d367b505676032878615b2843eb64ed7b;hpb=923cc82c481a99269d397dc86f8b664ba8cb98da;p=git.git diff --git a/perl/Git.pm b/perl/Git.pm index 7d7f2b1d3..291ff5b53 100644 --- a/perl/Git.pm +++ b/perl/Git.pm @@ -56,7 +56,7 @@ require Exporter; @EXPORT_OK = qw(command command_oneline command_noisy command_output_pipe command_input_pipe command_close_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 temp_acquire temp_release temp_reset temp_path); @@ -492,6 +492,16 @@ C). Useful mostly only internally. sub exec_path { command_oneline('--exec-path') } +=item html_path () + +Return path to the Git html documentation (the same as +C). Useful mostly only internally. + +=cut + +sub html_path { command_oneline('--html-path') } + + =item repo_path () Return path to the git repository. Must be called on a repository instance.