创建远程仓库
创建公钥
ssh-keygen -t rsa -C "youremail@example.com"
#将邮箱名改成自己的邮箱,查看~/.ssh下生成id_rsa和id_rsa.pub两个文件
#id_rsa是私钥,不能泄露出去,id_rsa.pub是公钥,可以放心地告诉任何人
github添加公钥
- 登陆GitHub,打开“Account settings”,“SSH Keys”页面:
- 点“Add SSH Key”,填上任意Title,在Key文本框里粘贴id_rsa.pub文件的内容
创建远程仓库
1.新建new repository
2.本地关联
git remote add origin git@github.com:**murongyimo/deep_learning**.git
#将本地仓库关联到远程github上注意用户名与仓库名(仓库为新建的仓库)
git push -u origin master
#首次把本地库的所有内容推送到远程库上
远程提交添加更改
git push origin master