返回顶部
首页 > 资讯 > 后端开发 > JAVA >从git提交出现“updates were rejected because a pushed branch tip is behind its remote”到提交成功解决问题的过程
  • 869
分享到

从git提交出现“updates were rejected because a pushed branch tip is behind its remote”到提交成功解决问题的过程

gitintellij-ideajava 2023-09-08 10:09:33 869人浏览 独家记忆
摘要

git提交代码从reject到提交成功全过程 1. 问题重述2. 解决过程出现新问题:Your local changes to the following files would be ov

git提交代码从reject到提交成功全过程

这里是不断发芽的山有木兮,希望这个帖子可以帮到你!

1. 问题重述

git提交出现“updates were rejected because a pushed branch tip is behind its remote”

git报错如下:

09:01:59.572: [LCIntelligenceFusionSystem] git -c credential.helper= -c core.quotepath=false -c log.showSignature=false push --progress --porcelain origin refs/heads/cxd:develop --tagserror: failed to push some refs to 'ssh://git.piesat.cn:27022/hezhipeng/LCIntelligenceFusionSystem.git'hint: Updates were rejected because a pushed branch tip is behind its remoteTo ssh://git.piesat.cn:27022/hezhipeng/LCIntelligenceFusionSystem.githint: counterpart. Check out this branch and integrate the remote changes!refs/heads/cxd:refs/heads/develop[rejected] (non-fast-forward)hint: (e.g. 'git pull ...') before pushing again.Donehint: See the 'Note about fast-forwards' in 'git push --help' for details.Updates were rejected because a pushed branch tip is behind its remote

2. 解决过程

在这里插入图片描述
pull之后,还是拒绝,好像不对
换个帖子
在这里插入图片描述
我要推送的不是master是develop,所以把master换成develop
在这里插入图片描述
接着我git pull
在这里插入图片描述提示BaseEntity被change了。

出现新问题:Your local changes to the following files would be overwritten by merge

报错如下:

 Your local changes to the following files would be overwritten by merge

解决办法:
根据是否要保存本地修改,有以下两种解决方案
1 保留修改

执行以下三条命令

  git stash #封存修改  git pull origin master   git stash pop #把修改还原

注:
git stash:备份当前工作区内容,从最近的一次提交中读取相关内容,让工作区保证和上次提交的内容一致。同时,将当前工作区内容保存到Git栈中
git pull:拉取服务器上当前分支代码
git stash pop:从Git栈中读取最近一次保存的内容,恢复工作区相关内容。同时,用户可能进行多次stash操作,需要保证后stash的最先被取到,所以用栈(先进后出)来管理;pop取栈顶的内容并恢复
git stash list:显示Git栈内的所有备份,可以利用这个列表来决定从那个地方恢复。
git stash clear:清空Git栈

2 废弃修改

核心思想就是版本回退,具体命令如下

  git reset --hard   git pull origin master

不建议使用第二种。除非你再三确定不需要本地的修改了。

我们使用第一种方法
在这里插入图片描述我查看一下状态

git status

在这里插入图片描述尝试merge,发现无法合并,右下角显示merging develop

出现新问题:Merging is not possible because you have unmerged files

报错如下:

error: Merging is not possible because you have unmerged files.hint: Fix them up in the work tree, and then use 'git add/rm 'hint: as appropriate to mark resolution and make a commit.fatal: Exiting because of an unresolved conflict.

解决办法:

用git diff或者git status 查看哪些文件冲突,有冲突的会提示:

++<<<<<<< HEAD

++<<<<<<< new_branch

修改你的冲突的文件,修改完之后,保存。用git add xxx,把你修改的文件全部都添加进去。最后,用git commit -a -m ” 备注信息 ” 提交,完成。

在这里插入图片描述

出现新问题:SystemMeanageService爆红

删掉了里面的<<<之类的还是红色
在这里插入图片描述
在我不知道咋办的时候
弹出一个窗,我也不知道我怎么触发的
然后我就把SystemMeanageService回滚了,确实只有这个是爆红的
在这里插入图片描述回滚之后,不在出现红色,尝试提交代码
在这里插入图片描述
还是尝试合并代码
在这里插入图片描述

出现新问题:You have not concluded your merge (MERGE_HEAD exists).

Please, commit your changes before you merge.
他的意思是我还有没提交的,想合并,需要自己提交
在这里插入图片描述提交成功
去gitlab查看
在这里插入图片描述

来源地址:https://blog.csdn.net/weixin_46334815/article/details/128669257

--结束END--

本文标题: 从git提交出现“updates were rejected because a pushed branch tip is behind its remote”到提交成功解决问题的过程

本文链接: https://lsjlt.com/news/399771.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作