Git Bug记录 —— 拉取或推送,出现分支冲突

当Git在执行`gitpull--tagsoriginmaster`时遇到本地和远程分支分叉,需指定如何同步。可选择通过`gitconfigpull.rebasefalse`启用合并或`gitconfigpull.rebasetrue`启用重基来处理。直接使用`--rebase`或`--no-rebase`也可临时覆盖默认设置,处理时需谨慎并备份。
摘要由CSDN通过智能技术生成

拉取或推送时报错如下:
git pull --tags origin master
branch master -> FETCH_HEAD
ac03df346… 73ce6daae master -> origin/master
hint: You have divergent branches and need to specify how to reconcile them.
hint: You can do so by running one of the following commands sometime before
hint: your next pull:
hint:
hint: git config pull. rebase false # merge
hint: git config pull. rebase true # rebase
hint: git config pull. ff only # fast-forward only
hint:
hint: You can replace “git config” with “git config --global” to set a default
hint: preference for all repositories. You can also pass --rebase, --no-rebase,
hint: or --ff-only on the command line to override the configured default per
hint: invocation.
fatal: Need to specify how to reconcile divergent branches.


解决办法:
这个错误信息的意思是 Git 在运行 git pull --tags origin master 命令时发现本地分支和远程分支存在分叉(divergent branches),也就是它们的提交历史不同步,因此需要指定一种方式来解决这个分叉。
常见的处理分叉的方式包括合并(merge)和重建基础(rebase)。但是,由于 Git 不知道你希望使用哪种方法来处理这个分叉,因此会提示你需要指定一种方式来解决这个问题。

  1. 如果你想使用合并的方式来处理这个分叉,可以在命令行中执行 git config pull.rebase false,命令中的 false 意味着 git pull 命令将使用合并(merge)方式。

  2. 如果你想使用重建基础的方式来处理这个分叉,可以在命令行中执行 git config pull.rebase true,命令中的 true 意味着 git pull 命令将使用重建基础(rebase)方式。

  3. 还可以在命令行上直接指定 --rebase 或 --no-rebase 以及 --ff-only 参数,以覆盖已经配置的默认设置。

    需要注意的是,在处理分叉时,一定要小心操作,并先备份代码库,以避免数据丢失。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小汪不秃头~

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值