把本地库所有内容推送到远程库上指令:
$ git push -u origin master
出现下面的错误提示:
error: src refspec master does not match any.
error: failed to push some refs to 'git@github.com:accompanyling/learngit.git'
我的解决方案:
删除当前key,然后重新生成key:
$ ssh-keygen -t rsa -C "332138725@qq.com"
该命令行会在C:\Users\Administrator中生成.ssh文件夹。里面有id_rsa和id_rsa.pub文件。
复制id_rsa.pub文件里面的内容。
打开github设置key 将上面复制的内容粘贴在New SSHKey->key中
最后我的做法是把之前在本机上建立的版本库全部删掉,从新建立:
第一步,先创建空目录:
$ mkdir learngit
$ cd learngit
$ pwd
pwd命令会得到该目录的路径
$ git init
第四步,用命令git add +文件名,把文件添加到仓库
git add readme.txt
第五步,用命令git commit -m"(里面是提交说明)",把文件交到仓库
$ git commit -m "wrote a readme file"
接下来就是添加远程库:
第一,在github上创建一个新仓库,名字也为learngit
第二,把本地仓库和新建的github仓库关联
$ git remote add origin git@github.com:accompanyling/learngit.git
$ git push -u origin master
OK问题解决,本文参考资料来自于:
https://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/0013752340242354807e192f02a44359908df8a5643103a000
https://blog.csdn.net/huahua78/article/details/52330792