|
GNU/Linux Desktop Survival Guide
by Graham Williams |
|
|||
Git Cherry pick from a pull request |
$ git remote add simon \url{https://github.com/simonzhaoms/mlhub.git}
$ git remote -v
$ git checkout -b deletable
$ git fetch simon
$ git cherry-pick <commit-hash>
$ git checkout main
$ git merge deletable
$ git branch -v
$ git branch -D deletable
$ git push
|