📜  git cherry pick 链 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:15.983000             🧑  作者: Mango

代码示例1
git cherry-pick A..B (Not includes A)
git cherry-pick A^..B (Includes A)

In the "cherry-pick A..B" form, A should be older than B.
If you want to pick the range B through D (including B) that would be B^..D (instead of B..D).