Is there a shortcut to tell Git to push the current tracking branch to origin?
Note: I know that I can change the default push behavior, but I am looking for an ad-hoc solution that does not change the default behavior.
For example, suppose I am on branch feature/123-sandbox-tests I would be using
git push origin feature/123-sandbox-tests
which is tedious. I am looking for a shortcut, something like
git push origin current
where git knows that current is feature/123-sandbox-tests.