我们的版本控制经理建议我们使用git pull --rebase
从上游分支中提取新的更改。我想使用 EGit(git 的 Eclipse 插件)来执行它。我怎样才能做到这一点?
问问题
13570 次
3 回答
48
您还可以从 Eclipse 中更改分支的 rebase 配置:
- 打开Git 存储库视图并导航到本地分支
- 打开上下文菜单并选择配置分支...
- 在出现的对话框中,选择Rebase复选框
当创建新分支时,EGit 还遵循“branch.autosetuprebase”配置。
于 2013-06-28T14:09:11.053 回答
18
利用
git config branch.*branch-name*.rebase true
并且pull
会自动变基。
您可以将其设置为自动配置新分支。
git config branch.autosetuprebase always
于 2013-06-26T15:51:08.430 回答