Since I mostly want to push to an origin that's the same as my current branch, I can do that easily with:
git push -u origin <my_branch>
There's a also a config for that.
Add these lines to your .gitconfig, that's located in your home directory:
[push] autoSetupRemote = true
After that you can simply use:
git push
And you don't have the need to write the boilerplate.
https://blog.gitbutler.com/how-git-core-devs-configure-git/
Your comment may be published.
Name:
Email:
Message: