HOWTO: move a commit to another branch using GIT

less than 1 minute read

$ git log #Get the commit_ID that you want to move  
$ git checkout [right_branch]  
$ git cherry-pick [commit_ID]

Comments