From https://git.wiguo.cn/service/connect_background_ui * branch activation -> FETCH_HEAD 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.
时间: 2024-04-25 21:28:04 浏览: 150
这是一个 Git 的错误信息,意味着你在从远程仓库拉取代码时遇到了分支冲突,需要指定如何合并它们。在执行下一次 pull 命令之前,你可以执行以下其中一种命令来解决这个问题:
- `git config pull.rebase false`,表示使用合并(merge)方式
- `git config pull.rebase true`,表示使用变基(rebase)方式
- `git config pull.ff only`,表示只使用快进(fast-forward)方式
你也可以使用 `--global` 参数来为所有仓库设置默认行为。另外,你可以在命令行中使用 `--rebase`、`--no-rebase` 或 `--ff-only` 参数来覆盖默认行为。
阅读全文