红联Linux门户
Linux帮助

通过SSH向GitHub push代码

发布时间:2016-11-01 15:45:11来源:blog.csdn.net/q1302182594作者:OneSea
1)注册GitHub账户
登陆https://github.com,根据网页提示创建一个账户。
 
2)创建新仓库
创建Linux-2.6.39.4-notes repository如下所示:
通过SSH向GitHub push代码
 
3)Quick setup
创建repository之后,会提示quick setup如下:
通过SSH向GitHub push代码
由上图可见,可以通过HTTPS或者SSH的方式向该仓库push代码,其中SSH方式下,应该push到Git@github.com:LiYihai/linux-2.6.39.4-notes.git。
 
4)生成SSH私/公匙
在Ubuntu系统上通过下面命令创建ssh私/公匙:
ssh-keygen -t rsa -C "xxx@xx.com"
注:邮箱名根据实际情况写,和git所使用的邮箱一致。
此时在~/.ssh目录中将会生成id_rsa和id_rsa.pub两个文件,前者是私匙,后者是公匙。
 
5)GitHub中添加SSH公钥
点击最右上角图标右侧的倒三角形,在下拉菜单中选择”Settings“选项
通过SSH向GitHub push代码
此时,会进入到如下界面,在其中选择“SSH and GPG keys”选项,然后点击”New SSH key“,将上述id_isa.pub里面的内容粘贴上去即可。
通过SSH向GitHub push代码
 
6)测试SSH
在Ubuntu命令行终端中输入如下命令:
ssh -T git@github.com  
若提示如下,则说明添加SSH成功:
通过SSH向GitHub push代码
 
7)push代码到GitHub
通过下面的命令上传代码:
git remove add git@github.com:LiYiHai/linux-2.6.39.4-notes.git  
git push -u origin master
如果提示如下,说明push成功:
通过SSH向GitHub push代码
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25640.html