标签: git format-patch
我们假设您对分支A提交了承诺:
1 2 3X 4 5X 6 7
你想从提交1,2,4,6创建一个补丁。我认为可以使用3个补丁:
git format-patch -2 3X --stdout > first.patch git format-patch -1 5X --stdout > second.patch git format-patch -1 7 --stdout > third.patch
但是可以使用一个补丁吗?