首页 > 其他分享 >git push 报错 Updates were rejected because the tip of your current branch is behind

git push 报错 Updates were rejected because the tip of your current branch is behind

时间:2024-12-02 10:32:53浏览次数:11  
标签:git tip 17.127 https push 报错 newccdeploy 172.28

[root@localhost newccdeploy]# git push
Username for 'https://172.28.17.127': xxxx
Password for 'https://xxxxx@172.28.17.127': 
To https://172.28.17.127/pmc/Operations/newccdeploy.git
 ! [rejected]        main -> main (non-fast-forward)
error: failed to push some refs to 'https://172.28.17.127/pmc/Operations/newccdeploy.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. If you want to integrate the remote changes,
hint: use 'git pull' before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

是由于本地和远程仓库两者代码文件不同步,因此需要先pull,进行合并然后再进行push

一、先使用pull --rebase,拉取远程仓库文件同步到本地,--rebase参数将当前分支的更改重新应用到获取的最新提交上

[root@localhost newccdeploy]# git pull --rebase origin
Username for 'https://172.28.17.127': xxxxx
Password for 'https://xxxx@172.28.17.127': 
Successfully rebased and updated refs/heads/main.

二、再使用push,更新远程仓库

[root@localhost newccdeploy]# git push origin         
Username for 'https://172.28.17.127': xxxxx
Password for 'https://xxxxx@172.28.17.127': 
Enumerating objects: 17, done.
Counting objects: 100% (17/17), done.
Delta compression using up to 8 threads
Compressing objects: 100% (10/10), done.
Writing objects: 100% (11/11), 2.00 KiB | 511.00 KiB/s, done.
Total 11 (delta 7), reused 0 (delta 0), pack-reused 0
To https://172.28.17.127/pmc/Operations/newccdeploy.git
   0de9b08..f3136c3  main -> main

 

标签:git,tip,17.127,https,push,报错,newccdeploy,172.28
From: https://www.cnblogs.com/sky-cheng/p/18581167

相关文章

  • fatal: 无法访问 ‘https://github.com/moveit/moveit2_tutorials.git/‘:Failed to co
    github在网页可以访问命令行访问就报错,排除网络问题正克隆到'moveit2_tutorials'...fatal:无法访问'https://github.com/moveit/moveit2_tutorials/':Failedtoconnecttogithub.comport443after44ms:Couldn'tconnecttoserver报错如上,没有登陆github,网......
  • git pull和git fetch有什么区别呢?
    gitfetch和gitpull都是用于从远程仓库更新本地仓库的Git命令,但它们的工作方式有所不同:gitfetch:这个命令会从远程仓库下载最新的提交和分支信息到你的本地仓库,但不会自动合并或修改你当前工作的分支。它只是更新了你本地仓库对远程仓库的认知。你可以把它想象成一......
  • 【Git的安装和Github的使用】
    目录:一、Git的下载二、Git的安装三、在IDEA中配置Git四、在GitHub上创建访问令牌五、在IDEA中向Github上传项目六、在IDEA中Commit和Push七、在IDEA中克隆Github上的项目八、在Github上的项目中添加协作者引言:本文详细介绍了如何通过Git、Github、IDEA等工具进行......
  • Day1——GitHub项目共同开发
    MarkDowm解释Markdown是一种轻量级标记语言,它允许人们使用易读易写的纯文本格式编写文档,然后转换成结构化的HTML代码。Markdown的目的是让文档的编写和阅读变得更加容易,同时也不失HTML的强大功能。以下是Markdown的一些基本概念和用法:基本语法:标题:使用#来表示标题,#的数量......
  • 乘法和逆矩阵 matrix multiplication and inverses
    乘法和逆矩阵matrixmultiplicationandinverses​ 首先说一下矩阵乘法。在之前的篇章里已经说明过一些矩阵的乘法的理解,在这一篇对整个矩阵乘法做一个概括,并提出新的理解。​ 我们考虑矩阵乘法[1]:\[\mathbfA\mathbfB=\mathbfC\]这里\(\mathbfA\)为\(m\)行\(n\)列的......
  • odoo18运行报错问题解决
    File"/Users/melon/.pyenv/versions/3.11.9/lib/python3.11/code.py",line90,inruncodeexec(code,self.locals)File"<input>",line1,in<module>File"/Applications/PyCharm.app/Contents/plugins/python/helpers/p......
  • wsl中用qemu运行linux kernel ,ping github.com有问题
    我在qemu上运行我编译的linuxkernel,并尝试在上面用wget安装unixbench(宿主机是wsl)pinggithub.com会失败但是我的dns是可以将github.com解析成功的我尝试ping对应的ip地址,发现是可以的我的/etc的所有文件列在下面了,我现在不知道这究竟是什么原因(猜测可能是wsl的网......
  • idea报错:java:无效的源发行版:12
    问题描述:Error:java:无效的源发行版:12使用idea运行项目的时候,报出错误:Error:java:无效的源发行版:XXX。这是因为idea设置的jdk版本和运行的项目版本的jdk版本号没有统一!!!解决办法:比如我要用的是1.8版本,全部统一成1.8。1.首先点击File->ProjectStructure2.查看Project中的Proj......
  • 题海拾贝——生成元(Digit Generator,ACM/ICPC SEOUL 2005,UVa1583)
            Hello大家好!很高兴我们又见面啦!给生活添点passion,开始今天的编程之路!我的博客:<但凡.欢迎点赞关注!1、题目描述        如果x加上x的各个数字之和得到y,就说x是y的生成元。给出(1<=n<=100000),求最小生成元。无解输出0。2、思路分析    ......
  • git的初步使用
    1.首先需要安装git,我使用环境:wslubuntu20中自带。2.在需要上传的代码项目文件夹下首先初始化git仓库,同时在git上新建同名仓库。gitinit3.将文件添加到Git的暂存区(stagingarea):gitadd .(点表示当前目录) 或者添加特定文件:gitadd<file>4.将暂存区的更改提交到本地仓......