我怎样才能简单地(例如在一个命令中?)在Git中合并,保持当前分支中冲突文件的状态,而不像在他们/我们的选项中那样单独指定每个文件?
git checkout master
git merge stable --some-option-to-keep-files-?
答案 0 :(得分:4)
合并策略有一个“我们的”选项,这是你想要的
git merge -s recursive -X ours remote/branch
正如manpage强调的那样,这不是git merge -s our。