TIL: Update cherry pick

This commit is contained in:
Şahin Akkaya 2023-03-20 15:07:37 +03:00
parent b0115bc2ba
commit 681dce31db

View File

@ -8,6 +8,6 @@ git cherry-pick <sha>
git cherry-pick <sha> -n
git cherry-pick <sha> --no-commit
# pick all the commits from A to B
git cherry-pick A^..B
# pick all the commits from A to B (A is older than B, remove caret (^) if you don't want to include A)
git cherry-pick "A^..B"
```