Git 提示error:src refspec master does not match any

git push origin master提示

error:src refspec master does not match any

这个问题之前遇到过,这次又遇到了只是时间间隔比较长了,为了防止以后再遇到类似问题,还是把这个方法简单记录在此。

问题产生原因分析

引起该错误的原因是,目录中没有文件,空目录是不能提交上去的,而且在push之前至少有过一次commit
解决方法

git init 
git touch READMEgit 
git add README 
git commit -m 'first commit'
git remote add origin https://github.com/Cycamore/lantingtalk.github.io.git
git push origin master
    原文作者:辛酉那年
    原文地址: https://www.jianshu.com/p/e1f440a9f313
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞