DEV Community

Discussion on: The SIMPLEST way to make a pull request 🌲✔️

Collapse
 
chadkouse profile image
Chad Kouse • Edited

The GitHub hub command line tool is much simpler. github.com/github/hub

hub pull-request --no-edit -p -o -b master

Pushes your branch to remote (-p), makes the PR using your commit messages (--no-edit), asks to pull the changes into the master branch (-b master), and even opens it in the browser once done (-o).

Collapse
 
fabian_muema profile image
Fabian Muema

Thanks for this command. Been using hub but didn't know it can do that.