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.
在 git 中应用补丁时,如果我在工作副本中修改了补丁中存在的相同文件,则会收到以下错误。
在您刚刚应用的补丁中,一个或多个大块被拒绝,您会在与受影响文件同名的“.rej”文件中找到大块。受影响的文件是:D D..
如何解决这个问题?
您可以在“.rej”文件中确认被拒绝的大块的内容。
您可以运行git difftool以启动差异工具以并排查看差异,并确定如何应用这些补丁。
git difftool
更新:
有关如何读取 .rej 文件,您可以参考SO 上的这个问题
使用方法git difftool可以参考这个页面