在git合并期间解决冲突时,如何忽略NetBeans中的前导和尾随空格。
在选项>下其他>差异你可以设置diff工具忽略引导尾随空格,但这不会影响NetBeans合并工具。
git支持git merge -Xignore-all-space
。是否有在NetBeans中传递此标志的方法?
Git Merge and Fixing Mixed Spaces and Tabs with two Branches
答案 0 :(得分:0)
现在是Evan(2018年,也就是5年后),如果您考虑使用其Git User Guide,似乎仅靠NetBeans是不可能的:
您不能将任何合并标志传递给NetBeans和you cannot set a git config。
这意味着命令行中的常规git merge -Xignore-all-space
仍然是最安全的道路。