我知道已经有几个线程,但没有人完全解释如何执行初始差异以创建补丁文件,然后如何将该补丁应用于初始目录更新它。
在我的情况下,有一个文件目录,任何人都可以从网上下载。我已经获取了该目录并对其进行了更改,并希望创建一个补丁文件,以便其他人可以将其应用于下载的目录,以准确再现我在修改后的目录中的内容。
帮助?关于如何应用我的补丁,我需要告诉对方什么?
答案 0 :(得分:114)
我只是遇到了同样的问题 - 关于如何做到这一点的很多建议。好吧,这就是我为修补和取消修补工作所做的工作:
创建补丁文件:
将两个目录的副本放在say / tmp中,这样我们就可以创建补丁了 文件,或者如果勇敢的话,将它们并排放在一个目录中。
在两个旧目录和新目录上运行适当的差异:
diff -ruN orig/ new/ > file.patch
# -r == recursive, so do subdirectories
# -u == unified style, if your system lacks it or if recipient
# may not have it, use "-c"
# -N == treat absent files as empty
如果某人拥有orig /目录,他们可以通过运行补丁来重新创建新目录。
从旧文件夹和补丁文件重新创建新文件夹:
将补丁文件移动到orig /文件夹所在的目录
此文件夹将被破坏,因此请在某处保留备份,或者 使用副本。
patch -s -p0 < file.patch
# -s == silent except errors
# -p0 == needed to find the proper folder
此时,orig /文件夹包含新/内容,但仍然 有它的旧名称,所以:
mv orig/ new/ # if the folder names are different
答案 1 :(得分:1)
查看开源Scarab C ++库:https://github.com/loyso/Scarab
它完全符合您的描述。 它使用xdelta库构建每个文件的差异并将其放入归档包。您可以重新分发该包并应用差异。 Win32有二进制文件。
我是Scarab项目的作者。
答案 2 :(得分:1)
我需要创建一个补丁文件并将其发送给某人,以便他们可以更新其目录以匹配我的目录。然而,diff和patch有很多警告,因此最终花了我几个小时才能弄清概念上如此简单的内容。绝对路径似乎比相对路径更受青睐,而且许多选择似乎都是从利基用例演变而来的。我终于找到了基于David H's answer的解决方案,并附有Lakshmanan Ganapathy的其他技巧):
directory
备份到directory.orig
directory
以达到所需状态directory.orig
保存到directory
中的file.patch
,以便收件人匹配名称这是我的笔记:
# to create patch:
# copy <directory> backup to something like <directory>.orig alongside it
cp -r <path_to>/<directory> <path_to>/<directory>.orig
# create/update/delete files/folders in <directory> until desired state is reached
# change working directory to <directory>
cd <path_to>/<directory>
# create patch file alongside <directory>
diff -Naru ../<directory>.orig . > ../file.patch
# -N --new-file Treat absent files as empty.
# -a --text Treat all files as text.
# -r --recursive Recursively compare any subdirectories found.
# -u -U NUM --unified[=NUM] Output NUM (default 3) lines of unified context.
# to apply patch:
# change working directory to <directory>
cd <path_to>/<directory>
patch -s -p0 < <path_to>/file.patch
# -s or --silent or --quiet Work silently, unless an error occurs.
# -pN or --strip=N Strip smallest prefix containing num leading slashes from files.
# to undo patch (note that directories created by patch must be removed manually):
# change working directory to <directory>
cd <path_to>/<directory>
patch -Rs -p0 < <path_to>/file.patch
# -R or --reverse Assume that patch was created with the old and new files swapped.
# -s or --silent or --quiet Work silently, unless an error occurs.
# -pN or --strip=N Strip smallest prefix containing num leading slashes from files.