博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
github上的版本和本地版本冲突的解决方法
阅读量:4597 次
发布时间:2019-06-09

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

情景:

在github上创建项目,然后本地git init

然后没有git pull -f --all

然后git add .  | git commit -am "init"

导致github上的版本里有readme文件和本地版本冲突,下面给出冲突原因:

 

[master][~/Downloads/ios] git push -u origin master

 

Username for 'https://github.com': shiren1118

Password for 'https://shiren1118@github.com': 
To https://github.com/shiren1118/iOS_code_agile.git
 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/shiren1118/iOS_code_agile.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

查看大部分资料,只有这个有用

http://www.cnblogs.com/xwdreamer/archive/2012/05/29/2523958.html

勾选强制覆盖已有的分支(可能会丢失改动),再点击上传,上传成功。

 

只有这句是核心,所以,本人就略微想了一下

[master][~/Downloads/ios] git push -u origin master -f 

 

至此,搞定问题

 

转载于:https://www.cnblogs.com/haoshine/p/7991935.html

你可能感兴趣的文章
强哥PHP面向对象学习笔记
查看>>
[转]基于.NET平台常用的框架整理
查看>>
Symbian (Read Inbox)读取收件箱的内容
查看>>
良好的编程规范
查看>>
struts2 入门
查看>>
.net 编译原理
查看>>
mean 快速开发和现有技术的对比分析
查看>>
Metro Style app :浏览器扩展
查看>>
linux的kernel是怎样工作的(TI_DM36X_ARM系统)(1)
查看>>
[luogu4310] 绝世好题 (递推)
查看>>
[luogu3203 HNOI2010] 弹飞绵羊 (分块)
查看>>
-Dmaven.multiModuleProjectDirectory system propery is not set.
查看>>
Python2 unichr() 函数
查看>>
Python 字典 copy()方法
查看>>
Minimum Path Sum
查看>>
Remove Duplicates from Sorted Array II
查看>>
常量指针和指针常量巧妙记忆方法[转]
查看>>
python-haproxy作业讲解视频总结
查看>>
批处理文件脚本总结
查看>>
快速排序C++代码
查看>>