我使用这个
tutorial.在我的虚拟服务器上安装了gitolite和gitolite
但我有一个问题是将gitolite-admin repo克隆到我的电脑上.
使用选项–disabled-password创建用户
但是,如果我尝试克隆
git clone git@<server>:gitolite-admin.git
他不仅询问我的rsa_key的密码,还要求密码
gituser.
有人有想法吗?我以为用户是在没有密码的情况下创建的
我不知道输入什么
解决方法
he asks not only for the passphrase of my rsa_key but also for the password of the gituser.
这意味着ssh无法通过public_key对请求进行身份验证(因为在客户端未找到所述公钥,或者在服务器端未正确注册,或者未提供密码,是关键是由ssh-agent保护的密码短语).
在这种情况下,ssh默认为用于标识的帐户密码(是否使用密码创建帐户).
做一个ssh -Tvvv git @< server>更好地解决导致ssh命令失败的原因.
@H_404_15@ @H_404_15@ 原文链接:https://www.f2er.com/linux/395860.html