使用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就成功了,具體原因是什麼呢?
這種錯誤一般是因為push的時候暫存區沒有文件,確認下add的README.md存不存在
上面說得對,你的暫存區是沒有內容的