How To Do A Pull Request With One Commit

[Solved] How To Do A Pull Request With One Commit | Lisp - Code Explorer | yomemimo.com
Question : how to do a pull request with one commit

Answered by : rich-rhinoceros

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

Source : https://mattstauffer.com/blog/how-to-merge-only-specific-commits-from-a-pull-request/ | Last Update : Tue, 03 Mar 20

Answers related to how to do a pull request with one commit

Code Explorer Popular Question For Lisp