Skip to content

Latest commit

 

History

History
8 lines (8 loc) · 174 Bytes

cherry-pick.md

File metadata and controls

8 lines (8 loc) · 174 Bytes

Cherry pick

cherry pick from master to branch

git checkout master
git fetch; git merge --ff-only origin/master
git checkout BRANCH
git cherry-pick -m 1 <MR>