4

在 EGit 2.3 中,他们根据发布文档添加了无快进合并功能

“支持 git merge --no-ff 作为 EGit 首选项。”

http://wiki.eclipse.org/EGit/New_and_Noteworthy/2.3

我的问题是,你在哪里设置这个偏好?我尝试了 Preferences -> Team -> Git -> Configuration -> Repository Settings 然后在 [Core] 设置 mergeoptions = --no-ff 但这似乎不起作用。

4

1 回答 1

7

识别以下合并选项,用于所有分支:

[merge]
    ff = true|false|only

当您只想为某个分支配置它时,请使用以下内容:

[branch "name"]
    mergeoptions = --ff|--no-ff|--ff-only

我还扩展了New and Noteworthy中的描述。

于 2013-02-28T18:19:38.787 回答