Updates were rejected because the tip of your current branch is behind

Git在push推送时,报错提示信息如下:

bash 复制代码
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

解决方法:

1、先使用pull命令:

复制代码
git pull --rebase origin master

2、再使用push命令

复制代码
git push -u origin maste
相关推荐
HahaMonsters22 分钟前
Git 中回退版本后修改并提交
git
大小科圣22 分钟前
git版本控制器
git
ZZQ-ZZQ4 小时前
版本控制工具——Git
git·gitee·github·版本控制·gitea
前端啊龙15 小时前
Git vs SVN 核心区别
git·svn
CyberSecurity_zhang15 小时前
Git工作流、命令汇总
服务器·git
悟能不能悟17 小时前
常用的git命令
git
空中湖18 小时前
免费在线PUA测试工具:识别情感操控,守护情感健康
git·测试工具
程序员小续21 小时前
git rebase 和git merge使用及区别
前端·git·后端
背影疾风1 天前
Git版本管理系列:(一)使用Git管理单分支
大数据·开发语言·c++·git·学习·elasticsearch
彷徨而立1 天前
【Git】git revert 或 git stash 或 git restore 都无法正常恢复库文件
git