我有一个叫my_pcc_branch。patch的补丁。

当我尝试应用它时,我得到以下信息:

$ git apply --check my_pcc_branch.patch
warning: src/main/java/.../AbstractedPanel.java has type 100644, expected 100755
error: patch failed: src/main/java/.../AbstractedPanel.java:13
error: src/main/java/.../AbstractedPanel.java: patch does not apply

这是什么意思?

我该如何解决这个问题?


当前回答

What I looked for is not exactly pointed out in here in SO, I'm writing for the benefit of others who might search for similar. I faced an issue with one file (present in old repo) getting removed in the repo. And when I apply the patch, it fails as it couldn't find the file to be applied. (so my case is git patch fails for file got removed) '#git apply --reject' definitely gave a view but didn't quite get me to the fix. I couldn't use wiggle as it is not available for us in our build servers. In my case, I got through this problem by removing the entry of the 'file which got removed in the repo' from patch file I've tried applying, so I got all other changes applied without an issue (using 3 way merge, avoiding white space errors), And then manually merging content of file removed into where its moved.

其他回答

尝试使用这里建议的解决方案:https://www.drupal.org/node/1129120

Patch -p1 < example.patch

这对我很有帮助。

如果补丁只应用了部分,而不是整个补丁。在应用补丁时,请确保您在正确的目录中。

例如,我在父项目文件夹中创建了一个补丁文件,其中包含.git文件。然而,我试图应用补丁在一个较低的水平。它只是在项目的那个级别应用变更。

在我的情况下,我很愚蠢,在第一时间就错误地创建了补丁文件,实际上是以错误的方式差分的。我最终得到了完全相同的错误消息。

如果你在master上,git diff branch-name > branch-name。补丁,这试图删除所有你想发生的添加,反之亦然(这是不可能的git完成,因为,显然,从未完成的添加不能删除)。

所以确保你签出到你的分支并执行git diff master > branch-name.patch

Git apply——reverse——reject example.patch

当你创建一个分支名称颠倒的补丁文件时:

ie。Git diff feature_branch..Master而不是git diff Master ..feature_branch

只需使用git apply -v示例。补丁要知道“补丁不适用”的原因。然后你可以一个一个地修正它们。