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 < mypatch
相反
patch -R < mypatch
将永远成功,并且完全撤消之前的更改?
我知道有几种补丁格式,当然还有很多补丁/差异程序,所以如果这与您相关的版本/系统相关,请指定。
补丁文件应该完美地反向工作。一般来说,补丁只是列出添加的行和删除的行。使用 -R 也可以简单地交换这些,使添加的行看起来像删除的行,而删除的行看起来像添加的行。
只要您在执行补丁后没有修改任何内容,删除应该始终有效。