解决git push 错误error: src refspec master does not match any. error: failed to push some refs to
在和远程仓库关联后,我们通过 push 命令将本地仓库的文件推送到线上仓库时,
出现了如下错误
error: src refspec master does not match any.
error: failed to push some refs to
常见原因:
1.本地git仓库目录下为空
2.本地仓库add后未commit
3.git init错误
用命令 git add + 文件名,把文件添加到仓库就行 ,然后正常push就好。
以下是我在操作时出现的一些错误。
****************************************************************************************
在添加 html 文件时又双叒出现了错误
然后使用 git status 查看文件状态,发现三个文件还是关联远程仓库ssh时的文件,原来是文件路径不对,
然后切换路径,git add 文件,push文件 最终将本地仓库的文件提交到线上仓库