github - 使用git push时出现error: src refspec master does not match any. 是什么原因

浏览:19日期:2023-09-30

问题描述

使用git push是,采用以下步骤:

git initgit add README.mdgit commit -m 'first commit'git remote add origin https://github.com/focusor/focusor.github.io.gitgit push -u origin master

产生如下错误:

error: src refspec master does not match any. error: failed to push some refs to 'xxxxxxx'

然后用如下方法解决了:

git add .git commit -m 'write your meaaage'

之后push就成功了,具体原因是什么呢?

问题解答

回答1:

这种错误一般是因为push的时候暂存区没有文件,确认下add的README.md存不存在

回答2:

上面说得对,你的暂存区是没有内容的

相关文章: