Git cherry pick
git checkout <branch_where_you_want_new_commits>
git fetch origin <branch_from_which_you_want_commits>
git cherry-pick <commit-hash>
Note: You can get the commit hashes from "git log" on the source branch
git checkout <branch_where_you_want_new_commits>
git fetch origin <branch_from_which_you_want_commits>
git cherry-pick <commit-hash>
Note: You can get the commit hashes from "git log" on the source branch
Comments
Post a Comment