minor docfix to smart http doc

This commit is contained in:
Sitaram Chamarty 2011-03-25 11:09:57 +05:30
parent e837d7a4b9
commit fc2f8ee709

View file

@ -80,14 +80,14 @@ following variations when doing this as root:
GITOLITE_HTTP_HOME=/var/www/gitolite-home GITOLITE_HTTP_HOME=/var/www/gitolite-home
PATH=$PATH:$GITOLITE_HTTP_HOME/bin PATH=$PATH:$GITOLITE_HTTP_HOME/bin
* now run the first 3 install steps for "non-root" method (clone, mkdir, and * now run the following commands. These are really the first 3 steps of the
gl-system-install), but **substitute** `GITOLITE_HTTP_HOME` in place of "non-root" install (clone, mkdir, and gl-system-install), **except** you
`HOME` in the mkdir and gl-system-install steps. substitute `GITOLITE_HTTP_HOME` in place of `HOME`. Note that you do NOT
run the gl-setup step yet.
**Do NOT run the gl-setup step yet**.
cd gitolite-home cd gitolite-home
git clone /tmp/gitolite.git gitolite-source git clone /tmp/gitolite.git gitolite-source
# or wherever your local clone is, or directly from git://github.com/sitaramc/gitolite
cd gitolite-source cd gitolite-source
GHH=$GITOLITE_HTTP_HOME # just for convenience in next 2 commands GHH=$GITOLITE_HTTP_HOME # just for convenience in next 2 commands
@ -98,7 +98,7 @@ following variations when doing this as root:
/var/www/gitolite-home/share/gitolite/conf/example.gitolite.rc /var/www/gitolite-home/share/gitolite/conf/example.gitolite.rc
$ENV{GIT_HTTP_BACKEND} = "/usr/libexec/git-core/git-http-backend"; $ENV{GIT_HTTP_BACKEND} = "/usr/libexec/git-core/git-http-backend";
# or wherever you have that file; not NO trailing slash # or wherever you have that file; note: NO trailing slash
$ENV{PATH} .= ":$ENV{GITOLITE_HTTP_HOME}/bin"; $ENV{PATH} .= ":$ENV{GITOLITE_HTTP_HOME}/bin";
# note the ".=" here, not "=" # note the ".=" here, not "="