zoukankan      html  css  js  c++  java
  • idea中push项目到远程仓库,提示:push to origin/master war rejected

    原因是:初始化项目时,创建远程仓库时选了README.md文件,但是而本地仓库与远程仓库尚未进行文件关联,因此需要将两个仓库的文件进行关联后提交。

    解决方案如下:

    1.切换到自己项目所在的目录,右键选择GIT BASH Here,Idea中可使用Alt+F12

    2.在命令行窗口中依次输入命令:

    git pull

    git pull origin master

    git pull origin master --allow-unrelated-histories

    3.在idea中重新push自己的项目

    如果还是没有成功的话,删除自己本地项目下.git的隐藏目录,重新尝试关联项目推送

  • 相关阅读:
    使用Mybatis时报错Invalid bound statement (not found):
    MyBatis学习(3)
    选数字
    看程序写结果
    NP
    完全平方数
    hahaha
    haha

    凝视
  • 原文地址:https://www.cnblogs.com/Proximacentaurus/p/13608234.html
Copyright © 2011-2022 走看看