1,004 B
1,004 B
stage | group | info | comments |
---|---|---|---|
none | unassigned | To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#designated-technical-writers | false |
Cherry Pick
- Given an existing commit on one branch, apply the change to another branch
- Useful for backporting bug fixes to previous release branches
- Make the commit on the master branch and pick in to stable
Cherry Pick sample workflow
- Check out a new 'stable' branch from 'master'
- Change back to 'master'
- Edit '
cherry_pick.rb
' and commit the changes. - Check commit log to get the commit SHA
- Check out the 'stable' branch
- Cherry pick the commit using the SHA obtained earlier
git checkout master
git checkout -b stable
git checkout master
# Edit `cherry_pick.rb`
git add cherry_pick.rb
git commit -m 'Fix bugs in cherry_pick.rb'
git log
# Copy commit SHA
git checkout stable
git cherry-pick <commit SHA>