从特定提交创建git补丁

时间:2015-12-22 16:03:05

标签: 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

但是可以使用一个补丁吗?

0 个答案:

没有答案