I think this should work:
git push xyz feature1:master
If the wizard already exists, you can hide it with -f/--force or + :
git push -f xyz feature1:master git push xyz +feature1:master
On the man page (in the examples section at the end):
git push origin +dev:master Update the origin repository's master branch with the dev branch, allowing non-fast-forward updates. [...]
source share