3

我已经安装了 Git,现在我正在尝试gitolite在我的服务器上安装,所以我输入了:

git clone git://github.com/sitaramc/gitolite
gitolite/install 

该命令的结果如下

use the following full path for gitolite: /root/gitolite/src/gitolite

我怎样才能完成安装

4

2 回答 2

1

如果您查看您尝试执行的文件,会有一些有用的评论:

Usage (from gitolite clone directory):

    ./install
    to run gitolite using an absolute or relative path, for example
    'src/gitolite' or '/full/path/to/this/dir/src/gitolite'

    ./install -ln [<dir>]
    to symlink just the gitolite executable to some <dir> that is in
    $PATH. <dir> defaults to $HOME/bin if <dir> not specified. <dir> is
    assumed to exist; gitolite will not create it.

    Please provide a full path, not a relative path.

    ./install -to <dir>
    to copy the entire 'src' directory to <dir>. If <dir> is not in
    $PATH, use the full path to run gitolite commands.

    Please provide a full path, not a relative path.

Simplest use, if $HOME/bin exists and is in $PATH, is:

    git clone git://github.com/sitaramc/gitolite
    gitolite/install -ln

    # now run setup
    gitolite setup -pk /path/to/YourName.pub
于 2012-07-26T11:40:13.670 回答
0

它现在被认为是“完成安装”。要使用它,您必须使用它输出的路径。

如果要在路径上安装它,则必须使用以下形式:

./install --to <dir>

推荐的是:

./install --to $HOME/bin
于 2015-04-03T10:00:10.617 回答