问题描述:
ubuntu安装git
问题解决:
(1)ubuntu下载git
注:
使用命令apt-get install git安装
(2)查看git是否安装成功、查看ssh密钥
注:
如上,git --version 查看git版本,使用命令
ssh-keygen -t rsa -C 814010510@qq.com生成rsa密钥
(3)github添加ssh密钥
注:
登陆github网站,在Account Setting中查看SSH Keys 添加ssh rsa 公钥
(4)添加成功之后,ubuntu连接git
注:
使用命令ssh -T git@github.com 可以成功连接github
参考网站:
https://help.github.com/articles/generating-ssh-keys
http://www.cnblogs.com/yourihua/archive/2012/07/07/2580147.html