标签:git
问题:
Initialized empty Git repository in /data1/mouxuan/fastsocket-private/.git/
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
解决步骤:
1、cd ~/.ssh
2、ssh-keygen -t rsa -C you@Email.com
遇到 提示一路 回车
遇到有Y 输入Y
3、ssh-add id_rsa
若出现: Could not open a connection to your authenticationagent.
输入:ssh-agent bash 在使用 ssh-add id_rsa
4、登录github.com --AccountSetting--ssh 点击Add
将id_rsa.pub 文件中的 内容添加进去
最后git clone 成功 (with ssh)
git clone with http 失败
参考:http://bbs.gsmcn.cn/thread-2474-1-1.html
centos: git clone提示Permission denied publickey 问题
标签:git
原文地址:http://blog.csdn.net/scdxmoe/article/details/40422629