diff options
author | jrnieder@uchicago.edu <jrnieder@uchicago.edu> | 2008-06-29 11:10:20 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-06-29 23:28:47 -0700 |
commit | bd870878f81056d4349048842ad774f84461e939 (patch) | |
tree | c348353266bbe27880404148d88417231f1c9a30 /Documentation | |
parent | t9700: skip when Test::More is not available (diff) | |
download | tgif-bd870878f81056d4349048842ad774f84461e939.tar.xz |
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 <jrnieder@uchicago.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-parse-remote.txt | 2 | ||||
-rw-r--r-- | Documentation/git-sh-setup.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/git-parse-remote.txt b/Documentation/git-parse-remote.txt index 951dbd6c83..421312eca9 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 c543170342..6731f9ac4c 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 ----------- |