1,创建秘钥
$ ssh-keygen -t rsa -C "youremail@example.com" 执行成功后,会在~/.ssh/目录下生成id_rsa和id_rsa.pub这两个文件
id_rsa.pub的作用是在github里输入用
2,登录github
在SSH页输入 it_rsa.pub
3,github上创建project
4,关联本地库和github
git remote add origin git@github.com:自己的github用户名/自己的git仓库.git
5,推送本地的git到github
git push -u origin master 如果出现错误:Unable to find remote helper for 'https'
参考:https://www.cnblogs.com/xiaoshiwang/p/9128282.html
6,从github,clone项目到本地库
git clone git@github.com:用户ID/库名.git
7,把在github上的资源,下载到本地
git pull origin master 8, 远程库添加错了后,如何删除呢 git remote 能够列出远程库的名字 git remote remove 远程库的名字