This will make hub
use the upstream remote as the base for pull requests
git config --global push.default=upstream
More at https://github.com/github/hub/commit/06999d907e3e606b8bfdbf3037e9bb8b3e2a1ea8
Add the upstream remote so hub
can detect the remote repository.
git remote add upstream bubobox/<repo>
When you push your branch the first time use -u
such that git saves the remote for this branch.
git push -u origin feature/<my-awesome-feature>
-o
will open the pull-request on GitHub.
git pull-request -o