add `push` command for pushing changes to MR branch
After doing mrhlpr tasks, I often want to just push changes in the branch to the remote MR branch and not approve/merge it. The finish
command does all of those things, so it would be nice to have a push
command that just pushes changes.
Here's git complaining today if I git push
a branch that was created by mrhlpr checkout ...
:
$ git push
fatal: The upstream branch of your current branch does not match
the name of your current branch. To push to the upstream branch
on the remote, use
git push origin HEAD:linux-next-headers
FWIW mrhlpr can already push to the correct remote branch (i.e. using the finish
command) that git is expecting.