多文件统一 diff 是否需要 Index: 行?
创建多文件
统一差异时是否需要Index
行,如下例所示?
Index: /file1
--- /file1
+++ /file1
_changes in file 1_
Index: /file2
--- /file2
+++ /file2
_changes in file 2_
这个 Index
行的目的是什么?
When creating a multi-file
unified diff is Index
line required like in the following example?
Index: /file1
--- /file1
+++ /file1
_changes in file 1_
Index: /file2
--- /file2
+++ /file2
_changes in file 2_
And what is the purpose of this Index
line?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
程序
patch
手册页指出:我相信它更像是用于遗留补丁格式的“旧”东西,并且您使用的补丁生成器仍然会生成它(在上下文和统一格式中
+++/---/***
线路已经完成了这项工作)。它没有害处。The program
patch
man page tells that:I believe it's more a "old" thing used for the legacy patch format, and the patch generator that you use still generates that (in contextual and unified format the
+++/---/***
lines already do that job). It does not harm.