git push origin master 時出現報錯 error: src refspec master does not match any error: failed to push some

JoJodar發表於2020-10-28

git push origin master 時出現報錯

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

網上有很多解決辦法試了都沒用,最後發現因為當前分支並不是master,而是main導致失敗。

解決辦法:

git switch -c master

此時已轉到master分支,再push即可

相關文章