当我尝试使用以下方法执行补丁时:
git am 0001-someFile.patch
但我收到此错误:
error: patch failed: src/***/file.c:459
error: src/***/file.c: patch does not apply
Patch failed at 0001 someFile.patch
When you have resolved this problem run "git am --resolved".
If you would prefer to skip this patch, instead run "git am --skip".
To restore the original branch and stop patching run "git am --abort".
我正在尝试使用以下方法手动合并冲突:
git mergetool --tool=meld
但我得到:
No files need merging
我怎么解决这个问题?我正在获取包含错误的文件的名称,但不知道该行(这是一个大文件)
也许有更好的方法来执行这种修补?