赞
踩
$ 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间的修改的patch(包含两个commit. 和都是具体的commit号)
$ git format-patch -1 #生成单个commit的patch
$ git format-patch #生成某commit以来的修改patch(不包含该commit)
$ git format-patch --root #生成从根到r1提交的所有patch
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。