美文网首页
github上的版本和本地版本冲突的解决方法

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

作者: 吹洞箫饮酒杏花下 | 来源:发表于2018-06-29 16:55 被阅读0次

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

    然后没有git pull -f --all

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

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

    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.

    j解决: git push -u origin master -f

    相关文章

      网友评论

          本文标题:github上的版本和本地版本冲突的解决方法

          本文链接:https://www.haomeiwen.com/subject/zwutsftx.html