为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

Git
芜湖不芜 2019-06-26 14:53:43
在Git中推送提交时,消息‘src reflspec母版不匹配’我用以下方法克隆我的存储库:git clone ssh://xxxxx/xx.git但在我换了一些文件之后add和commit他们,我想把他们推到服务器上: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'
查看完整描述

3 回答

?
小唯快跑啊

TA贡献1863条经验 获得超2个赞

在删除本地计算机中的所有文件后,我也出现了类似的错误,我必须清除存储库中的所有文件。

我的错误信息是这样的:

error: src refspec master does not match any.
error: failed to push some refs to 'git@github ... .git'

并通过执行以下命令解决了问题:

touch README
git add README

git add (all other files)
git commit -m 'reinitialized files'
git push origin master --force  # <- caution, --force can delete others work.

就这样,希望这能帮上忙。


查看完整回答
反对 回复 2019-06-26
  • 3 回答
  • 0 关注
  • 609 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信