搜索

首页  >  问答  >  正文

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

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

git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/focusor/focusor.github.io.git
git 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就成功了,具体原因是什么呢?

PHP中文网PHP中文网2795 天前1009

全部回复(2)我来回复

  • 巴扎黑

    巴扎黑2017-05-02 09:32:04

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

    回复
    0
  • PHPz

    PHPz2017-05-02 09:32:04

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

    回复
    0
  • 取消回复