how to merge specific commits from another branch in git code example
Example 1: how to do a pull request with one commit
git fetch origin
git checkout -b add-log-component origin/add-log-component
git checkout master
git cherry-pick COMMIT-HASH-HERE
git push origin master
Example 2: update one branch to another
git checkout feature1
git merge develop