0

我有几个补丁需要合并到我的分支中

这方面的指导方针是:

git checkout 4.4
git checkout -b 4.4-xamarin
git am Engine/Plugins/XamarinUE4/Patches/*

Patches33 个不同的补丁中,我遇到的问题是它git am Engine/Plugins/XamarinUE4/Patches/*似乎根本没有做任何事情。

我得到以下输出:

D:\Ue4src\UnrealEngine>git am Engine/Plugins/XamarinUE4/Patches/*
Stray d:/Ue4src/UnrealEngine/.git/rebase-apply directory found.
Use "git am --abort" to remove it.

如果我查看“修改日期”,似乎根本没有文件更改。

4

1 回答 1

0

确保您没有git rebase进行中。如果没有,您可以安全地删除该rebase-apply目录:Git 错误:以前的变基目录 .git/rebase-apply 仍然存在,但给出了 mbox

之后,应用补丁git am应该没问题。

于 2014-10-31T13:28:39.063 回答