Cherry picking is the act of picking a commit from a branch and applying it to another.
Even though git cherry-pick is just a single command, it needs a whole process to get that right. So below are the list of commands need to be executed to have a successful cherry picking š
Step:1
Clone the remote repository in to local machine and change the root to your repository
git clone remote_repo
cd local_repo
eg:
$ git clone https://github.com/ravi-kolla/git-cherry-pick.git
$ cd git-cherry-pick
Step: 2
Checkout the branch you have changes in and pull all the commits from remote repo
$ git checkout branch_with_commit
$ git pull //pulls all the commits from from your branch
Step: 3
Checkout the branch you want to add the changes
$ git checkout branch_to_add_changes
$ git pull
//pull all the commits to make sure your new branch is up to date before adding new changes
Step: 4
Cherry pick a commit which you want to be added to the new branch by passing commit hash
$ git cherry-pick #commit-hash
$ git cherry-pick 29cebd92
Step: 4.1 (Incase if you get merge conflicts on executing git cherry-pick)
Lets say after executing step:4, you came across bellow errorĀ š
$ git cherry-pick 29cebd92
error: could not apply 29cebd92ā¦ commit_message
hint: after resolving the conflicts, mark the corrected paths
hint: with āgit add <paths>ā or āgit rm <paths>ā
hint: and commit the result with āgit commitā
check git status to identify the conflicts and resolve the files mentioned asĀ both modified.
$ git status
On branch pre-release
Your branch is up to date with āorigin/pre-releaseā.
You are currently cherry-picking commit 29cebd92.
(fix conflicts and run āgit cherry-pick ā continueā)
(use āgit cherry-pick ā abortā to cancel the cherry-pick operation)
Changes to be committed:modified: file-path/sample.css
new file: file-path/sample.js
new file: file-path/sample.txtUnmerged paths:
(use āgit add <file>ā¦ā to mark resolution)both modified: file-path/main.js
both modified: file-path/main.css
Once the merge conflicts are resolved add those files to git and then continue with git cherry-pick.
$ git add file-path/main.js file-path/main.css
$ git cherry-pick --continue
Step: 5
Youāre all set to push the cherry picked commit(s) to your new branch š
$ git push //commits you selected will be pushed to the new branch
Additional info..
$ git cherry-pick A^..B
where A is the commit hash you want to start from (the ^ will include commit A instead of starting at next commit after A) and B is the commit you want to end after being applied.
$ git log --oneline
Gives you list of commits in single line so you can easily select commit hash codes for cherry picking
Comments
Loading...
Leave a reply