From: jrnieder@uchicago.edu Date: Sun, 29 Jun 2008 16:10:20 +0000 (-0500) Subject: Documentation: don't assume git-sh-setup and git-parse-remote are in PATH X-Git-Tag: v1.6.0-rc0~188 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=bd870878f81056d4349048842ad774f84461e939;p=git.git Documentation: don't assume git-sh-setup and git-parse-remote are in PATH When git-parse-remote and git-sh-setup are not installed in $(bindir) anymore, the shell script library won't be found on user's $PATH in general. Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/Documentation/git-parse-remote.txt b/Documentation/git-parse-remote.txt index 951dbd6c8..421312eca 100644 --- a/Documentation/git-parse-remote.txt +++ b/Documentation/git-parse-remote.txt @@ -8,7 +8,7 @@ git-parse-remote - Routines to help parsing remote repository access parameters SYNOPSIS -------- -'. git-parse-remote' +'. "$(git --exec-path)/git-parse-remote"' DESCRIPTION ----------- diff --git a/Documentation/git-sh-setup.txt b/Documentation/git-sh-setup.txt index c54317034..6731f9ac4 100644 --- a/Documentation/git-sh-setup.txt +++ b/Documentation/git-sh-setup.txt @@ -7,7 +7,7 @@ git-sh-setup - Common git shell script setup code SYNOPSIS -------- -'git-sh-setup' +'. "$(git --exec-path)/git-sh-setup"' DESCRIPTION -----------