4

我关注了很多文章,但我仍然不知道如何在 Cygwin 中使用 diff 和 patch

在这里,我在 Windows 资源管理器中创建了 2 个文件

起源.txt

one
two
three

新的.txt

one
four
five

然后我diff -u origin.txt new.txt > file.patch导致了这个

--- origin.txt  2013-03-21 15:53:20.062956800 +0700
+++ new.txt 2013-03-21 15:53:29.191869600 +0700
@@ -1,3 +1,3 @@
 one
-two
-three
\ No newline at end of file
+four
+five
\ No newline at end of file

然后我patch origin.txt < file.patch显示错误

patching file origin.txt
Hunk #1 FAILED at 1.
1 out of 1 hunk FAILED -- saving rejects to file origin.txt.rej

如何克服这一点?这与 Unix 和 Windows 文件格式有关吗?

P/S:我使用的是 CYGWIN_NT-6.1-WOW64 和 Windows 7 64bit

4

1 回答 1

6

这几乎可以肯定是一个行尾问题。您可以通过首先运行文件来解决此问题dos2unix

$ dos2unix origin.txt new.txt
$ patch origin.txt < file.patch
patching file origin.txt
于 2013-03-21T11:00:47.373 回答