Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我之前已经阅读并应用了这个优秀答案中关于在 git 中为特定文件类型设置合并策略的说明。这非常适合合并。但是,当我执行 a 时git rebase,不会应用合并策略。
git rebase
是否可以设置git rebase为应用类似的合并策略来自动解决某些冲突?
您可以强制 rebase 对重命名的文件应用相同的规则(也会导致问题)与合并
git rebase --merge
它也可能适用于您的问题。当您想在变基时应用 eol 转换时,它不起作用。