在Git中推送提交时,消息‘src reflspec母版不匹配’

在Git中推送提交时,消息‘src reflspec母版不匹配’

我用以下方法克隆我的存储库:

git clone ssh://xxxxx/xx.git

但在我换了一些文件之后addcommit他们,我想把他们推到服务器上:

git add xxx.php
git commit -m "TEST"
git push origin master

但我得到的错误是:

error: src refspec master does not match any.  
error: failed to push some refs to 'ssh://xxxxx.com/project.git'


芜湖不芜
浏览 610回答 3
3回答

小唯快跑啊

在删除本地计算机中的所有文件后,我也出现了类似的错误,我必须清除存储库中的所有文件。我的错误信息是这样的:error:&nbsp;src&nbsp;refspec&nbsp;master&nbsp;does&nbsp;not&nbsp;match&nbsp;any. error:&nbsp;failed&nbsp;to&nbsp;push&nbsp;some&nbsp;refs&nbsp;to&nbsp;'git@github&nbsp;...&nbsp;.git'并通过执行以下命令解决了问题:touch&nbsp;README git&nbsp;add&nbsp;README git&nbsp;add&nbsp;(all&nbsp;other&nbsp;files) git&nbsp;commit&nbsp;-m&nbsp;'reinitialized&nbsp;files' git&nbsp;push&nbsp;origin&nbsp;master&nbsp;--force&nbsp;&nbsp;#&nbsp;<-&nbsp;caution,&nbsp;--force&nbsp;can&nbsp;delete&nbsp;others&nbsp;work.就这样,希望这能帮上忙。
打开App,查看更多内容
随时随地看视频慕课网APP