github上的版本和本地版本冲突的解决方法

情景:ios

在github上建立项目,而后本地git initgit

而后没有git pull -f --allgithub

而后git add .  | git commit -am "init"spa

致使github上的版本里有readme文件和本地版本冲突,下面给出冲突缘由:code

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

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.rem

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

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

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

至此,搞定问题

相关文章
相关标签/搜索