“gitolite setup -pk banruosheng.pub” falhou quando eu o instalei no centos 5.4 32

1

quando instalei o gitolite no meu centos 5.4, acabei de encontrar erros abaixo. Como encontrar uma maneira de consertá-los?

wget http://mirror.esc7.net/pub/OpenBSD/OpenSSH/portable/openssh-5.8p1.tar.gz
tar -xvzf openssh-5.8p1.tar.gz
cd openssh-5.8p1
./configure --prefix=/usr
make
sudo make install
useradd git -g git
su git
mkdir .ssh
git clone git://github.com/sitaramc/gitolite
mkdir -p $HOME/bin
gitolite/install -to $HOME/bin
vi banruosheng.pub
gitolite setup -pk banruosheng.pub
    error:bash: gitolite: command not found
bin/gitolite setup -pk banruosheng.pub
    FATAL: errors found but logfile could not be created
    FATAL: /home/git/.gitolite/logs/gitolite-2013-03.log: 没有那个文件或目录
    FATAL: die  'banruosheng.pub' does not seem to be a valid ssh pubkey file

'''
    
por banruosheng 19.03.2013 / 13:21

1 resposta

0

 error:bash: gitolite: command not found

Verifique se $HOME/bin está no seu $PATH .
(Veja " Como adicionar um diretório ao meu caminho? ")

    
por 19.03.2013 / 13:34