1、使用git format-patch 打patch

$ git format-patch HEAD^                 #最近的1次commit的patch

$ git format-patch HEAD^^               #最近的2次commit的patch

$ git format-patch HEAD^^^              #最近的3次commit的patch

$ git format-patch HEAD^^^^                  #最近的4次commit的patch

$ git format-patch ..                                              #两个commit间的修改(包含两个commit. 和都是具体的commit号)

$ git format-patch -1                                                    #单个commit

$ git format-patch   版本号                                                     #某commit以来的修改(不包含该commit)

$ git format-patch --root                #从根到r1提交的所有patch

 

参考文档:https://blog.csdn.net/weixin_39630126/article/details/112864187

            https://segmentfault.com/a/1190000039800190