作業が終わったのでgit push origin masterをしようとしたら「error: src refspec master does not match any error: failed to push some refs to ‘origin’」のエラーが出た
git push origin masterをしようとしたら「error: src refspec master does not match any error: failed to push some refs to ‘origin’」のエラーが出たけど対応方法が分からない、そんな方向けにこのページでは対応方法について解説していきます
【git pushでエラー error: src refspec master does not match any error: failed to push some refs to ‘origin’が出た時の対処法】
① git push origin masterでエラーが出てがうまくいかなかった場合git commitの操作をしてみる
git push origin masterで「error: src refspec master does not match any error: failed to push some refs to ‘origin’」が出た場合git commitの操作を忘れている可能性があります。なので
git commit -m “commit text”
上記のgit commit の操作をして再度git push origin masterを試してみましょう。
以上で、git pushでエラー error: src refspec master does not match any error: failed to push some refs to ‘origin’が出た時の対処方法についての説明を終わります。