Git 打补丁----基于源码改动生成 patch 包的方法

git diff 生成补丁方法:

git diff 本次提交前一次commit的序列号 本次提交commit的序列号 > xxx.patch   #使用diff方法也可以将多次修改打出一个patch包来

git apply XXX.path

git format-patch

$ git format-patch HEAD^        //生成最近的1次commit的patch; git format-patch -1 同作用
$ git format-patch HEAD^^       //生成最近的2次commit的patch ;有几个^就会打几个patch,从最近一次打起
$ git format-patch -2 <r1>           //生成两个commit的patch;

$ git format-patch <r1>..<r2>       //生成两个commit间的修改的patch(包含两个commit. <r1>和<r2>都是具体的commit号)

$ git format-patch <r1>             //生成某commit以来的修改patch(不包含该commit)
$ git format-patch --root <r1>   //生成从根到r1提交的所有patch

git am

git am
$ git apply --stat xxxx.patch     //查看patch的情况
$ git apply --check xxxx.patch    //检查patch是否能够打上,如果没有任何输出,则说明无冲突,可以打上
(注:git apply并不会将commit message等打上去,打完patch后需要重新git add和git commit,
而git am会直接将patch的所有信息打上去,而且不用重新git add和git commit,author也是patch的author而不是打patch的人)
$ git am xxxx.patch               //将名字为xxxx.patch的patch打上
$ git am --signoff xxxx.patch     //添加-s或者--signoff,还可以把自己的名字添加为signed off by信息,作用是注明打patch的人是谁,因为有时打patch的人并不是patch的作者
$ git am ~/patch-set/*.patch     // 将路径~/patch-set/*.patch 按照先后顺序打上
$ git am --abort               //当git am失败,解决完冲突后,这条命令会接着打patch
$ git apply --check xxx.patch   //測补丁有无问题
$ git apply --reject xxx.patch   //强制打补丁

https://git-scm.com/docs/git-format-patch

猜你喜欢

转载自www.cnblogs.com/developer-qin/p/12357411.html
今日推荐