git push到github失败
错误提示
error: src refspec master does not match any.
error: failed to push some refs to
常见原因:
1.本地git仓库目录下为空
2.本地仓库add后未commit
3.git init错误
解决:
1.控制面板打开文件夹选项 打开隐藏文件和文件夹显示
2.到本地仓库目录下查看是否有.git文件夹——无 则git init
3.看.git文件夹下是否有之前提交的文件——若无 则重新 git commit (如果之前git add过的话 没有就要重新 add commit)
原作者:https://blog.csdn.net/yemoweiliang/article/details/52980658