在项目中,如果和其他人一起维护一个项目,有时候别人修改了一些代码,更换 .c 文件也很麻烦,这时就需要用到 patch 了,别人只要发一个 patch ,你打上即可。
patch :补丁,用来显示两个文件不同的地方。
制作补丁有两种方法,diff 和 quilt,本文我们讨论 diff。
1、创建两个文件,a.c 和 b.c
a.c
#include < stdio.h >
int main()
{
printf("Jason 20220116rn");
return 0;
}
b.c
#include < stdio.h >
int main()
{
printf("Jason 20220116rn");
printf("test diff patchrn");
return 0;
}
2、生成补丁
diff -u a.c b.c > test.patch
上图可以看到 test.patch 的内容,包括修改时间,修改的哪一行,都标注的很明显。
全部0条评论
快来发表一下你的评论吧 !