博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git:错误:error:src refspec master does not match any
阅读量:6422 次
发布时间:2019-06-23

本文共 462 字,大约阅读时间需要 1 分钟。

新建立了一个远程仓库,想着把项目放上去。于是在项目目录上:

git init

然后就添加远程库

git remote add origin xxxx.git

然后就想push:

git push -u origin master

结果提示错误:

error:src refspec master does not match any

百度下,原来是说我本地没有提交任何东西,本地版本库为空, 空目录不能提交 (只进行了init, 没有add和commit)。

解决:

添加:git add -A

提交:git commit -m "first commint"

强制推送:git push -f orgin master

注:之所以强制推送是因为远程仓库已经初始化了,而我没有pull下来就直接push会提示版本不一致。使用-f表示强制推送,覆盖掉原仓库。

 

本文转自Ryan.Miao博客园博客,原文链接:http://www.cnblogs.com/woshimrf/p/5258058.html,如需转载请自行联系原作者
你可能感兴趣的文章
Java中的ExceptionInInitializerError异常及解决方法
查看>>
Spring 注入bean时的初始化和销毁操作
查看>>
java线程同步原理(lock,synchronized)
查看>>
yRadio以及其它
查看>>
闪迪(SanDisk)U盘防伪查询(官方网站)
查看>>
无锁数据结构
查看>>
MySQL的变量查看和设置
查看>>
android onNewIntent
查看>>
XML特殊符号
查看>>
系统时间——ntpd
查看>>
监测超过特定内存阀值进程并结束
查看>>
Linux Centos 查询信息
查看>>
android adb命令
查看>>
python “双”稀疏矩阵转换为最小联通量“单”矩阵
查看>>
揭秘天猫双11背后:20万商家600万张海报,背后只有一个鹿班
查看>>
重置mysq root密码脚本
查看>>
MHA配置参数
查看>>
深入理解Lock
查看>>
vim的块选择
查看>>
HTML --块
查看>>