当前位置:  开发笔记 > 运维 > 正文

密码问题与git clone gitosis @ host:gitosis-admin.git

如何解决《密码问题与gitclonegitosis@host:gitosis-admin.git》经验,为你挑选了1个好方法。

在尝试在Ubuntu上配置gitosis时,我遇到了一些问题.当我运行此命令

git clone gitosis@host:gitosis-admin.git

对于我使用的本地机器git clone git@59.80.70.68:gitosis-admin.git,59.80.70.68是服务器的IP.但是我遇到了密码问题.我尝试输入服务器机器的密码,但它失败了

请帮助我.



1> Phil Miller..:

Gitosis永远不会使用密码.它总是使用SSH密钥.当你运行gitosis-init时,你需要配置使用你给它的私钥的公钥.您可以通过编辑~/.ssh/config包含类似的节来完成此操作

Host githost # hostname you use on the commandline, in git remotes, etc.
HostName 12.34.56.78 # actually IP address or DNS name to connect to
User gitosis
IdentityFile ~/.ssh/id_rsa # whatever file stores the private key matching the public key you gave gitosis

推荐阅读
ifx0448363
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有