使用git在centos下连接github
git安装
sudo apt-get install git git-core
配置git
$ git config –global user.name "chuhe"
$ git config –global user.email [email protected]
生成密匙
$ ssh-keygen -t rsa -C "[email protected]" //邮箱同上
vim /home/linx/.ssh/id_rsa.pub //复制里面的密钥或者直接cat
- 打开自己的github-》点个人头像-》settings-》SSH KEYS->add SSH key->把刚才复制的内容粘贴到key下(title随意起名)-》保存
重点来了
测试$ ssh [email protected]
这是成功的状态:chuhe@ubuntu:~$ ssh -T [email protected] Hi chuhemiao! You’ve successfully authenticated, but GitHub does not provide shell access.
错误的情况:一直回车下去,出现yes和no的情况下,记住这里需要输入yes而不是y!!!!!!
- 本人在最后一步纠结了一天多,最后无意中看到一个博主说输入yes就行了,伤心啊!!!