Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个存储库并从一个创建了一个 .patch 文件。在它里面的路径是这样的:
a/视图/文件名 b/视图/文件名
我通过检查分支并运行git format-patch -number我需要的提交来制作补丁文件。这些文件看起来有我需要的差异,并且相对路径看起来正确。
git format-patch -number
但是,当我尝试git am --signoff从相同的相对位置修补我的另一个 repo(具有不同的绝对结构但相同的相对结构)中的补丁时,我收到如下错误:
git am --signoff
错误:视图/文件名:索引中不存在
有什么帮助吗??谢谢!!