我正在尝试应用从某个 git 存储库生成的补丁。补丁上下文行看起来像这样
else if ( o is Item )
在我的代码中它看起来像这样
else if (o is Item)
当我应用补丁时
$ git apply -v --check --directory=myroot --ignore-space-change --ignore-whitespace ../patches/0003-some-name.patch
它说
error: while searching for:
并提供仅在上述空间中存在差异的上下文块。当我解决空间问题时,问题就消失了。有没有办法指定上下文行内的空格可以忽略?