git push origin
will push all changes on the local branches that have matching remote branches at origin
As for git push
Works like
git push <remote>
, where<remote>
is the current branch's remote (or origin, if no remote is configured for the current branch).
From the Examples section of the git-push
man page