我可以手动将以下内容添加到git config:
[branch "master"]
remote = origin
mergeOptions = --edit --no-ff
但是,当我尝试使用这样的命令行添加相同的内容时:
$ git config branch.master.mergeOptions --edit --no-ff
只有第一个--edit
值才会添加到配置中。如何添加--edit
和--no-ff
?
答案 0 :(得分:2)
只需用引号括起--edit --no-ff
:
$ git config branch.master.mergeOptions "--edit --no-ff"
这将使其有效。
我希望这会有所帮助。