我有一个叫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

这是什么意思?

我该如何解决这个问题?


当前回答

当所有这些都失败时,尝试git apply的——3way选项。

git apply——3way patchFile.patch

——3 如果补丁没有完全应用,则返回到3向合并 Patch记录了它应该应用到的blob的身份,而我们 这些斑点是否在本地可用,可能会离开冲突 工作树中供用户解析的文件中的标记。这 选项暗示了——index选项,并且与 ——reject和——cached选项。

典型的失败案例应用尽可能多的补丁,让你在git中解决冲突,但你通常这样做。可能比被拒绝的选择简单一步。

其他回答

Git apply——reverse——reject example.patch

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

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

当所有这些都失败时,尝试git apply的——3way选项。

git apply——3way patchFile.patch

——3 如果补丁没有完全应用,则返回到3向合并 Patch记录了它应该应用到的blob的身份,而我们 这些斑点是否在本地可用,可能会离开冲突 工作树中供用户解析的文件中的标记。这 选项暗示了——index选项,并且与 ——reject和——cached选项。

典型的失败案例应用尽可能多的补丁,让你在git中解决冲突,但你通常这样做。可能比被拒绝的选择简单一步。

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.

我的问题是,我运行git diff,然后运行git reset—hard HEAD,然后意识到我想撤销,所以我尝试从git diff复制输出到一个文件,并使用git apply,但我得到了一个错误,“补丁不适用”。在切换到patch并尝试使用它之后,我意识到由于某种原因,差异的一部分是重复的,在删除重复之后,patch(大概也包括git apply)工作了。

警告:此命令可以永久删除旧的丢失提交。在尝试此操作之前,请复制整个存储库。

我找到了这个链接

我不知道为什么这样做,但我尝试了很多工作,这是唯一一个对我有用的。简而言之,运行以下三个命令:

git fsck --full
git reflog expire --expire=now --all
git gc --prune=now