问题描述
在使用git bash指令将项目上传到github时,总是遇到一些错误无法解决。
下面是我遇到的一个问题
error: src refspec master does not match any. error: failed to push some refs to 'XXXX.git'
原因分析:
错误:SRC ReFSPEC主控器不匹配任何。
错误:未能将某些引用推到’git @ Github.com:HaHaa/ftpMal.git’也就是仓库为空。
解决方案:
利用git add xxx.py 指令,将所有的文件全部都添加,然后再进行git commit -m "init"将所有的文件commit,
git commit -m "init"
然后在执行
git remote add origin xxxxxxxx.git
最后使用
$ git push -u origin master文章来源:https://www.toymoban.com/news/detail-718292.html
参考文章文章来源地址https://www.toymoban.com/news/detail-718292.html
到了这里,关于error: src refspec master does not match any.处理方案的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!