hint: invocation. Need to specify how to reconcile divergent branches.
时间: 2023-11-07 14:53:56 浏览: 119
您需要指定如何协调不同的分支。您可以通过在下一次拉取之前运行以下命令之一来完成此操作:
- git config pull.rebase false # 合并
- git config pull.rebase true # 重设基址
- git config pull.ff only # 仅限快进
您还可以将 "git config" 替换为 "git config --global" 来设置默认值,适用于所有存储库。您也可以在命令行中使用 --rebase、--no-rebase 或 --ff-only 来覆盖配置的默认值。
提示中的 "Hint: invocation. Need to specify how to reconcile divergent branches." 是一个错误提示,说明您需要指定如何协调不同的分支。
相关问题
中文 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 的错误信息,意味着你的本地分支与远程分支不一致,需要指定如何合并它们。在执行下一次 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` 参数来覆盖默认行为。
From https://gitee.com/baiboystu/spring-mvc-test * branch master -> 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.
这个错误提示说明你的本地分支和远程分支有分叉,并且需要指定如何合并它们。具体来说,你需要在拉取之前指定一个合并策略,可以通过以下命令来完成:
1. 合并策略为merge:`git config pull.rebase false`
2. 合并策略为rebase:`git config pull.rebase true`
3. 合并策略为fast-forward only:`git config pull.ff only`
如果你想要在所有仓库中使用相同的合并策略,可以在命令中加上`--global`参数。另外,如果你只想在当前拉取操作中使用特定的合并策略,可以在命令中加上`--rebase`、`--no-rebase`或`--ff-only`参数来覆盖默认设置。
阅读全文