Let's say you want to push the staging
branch from origin
to upstream
as it is:
Fetch and update the latest to the corresponding tracking branch origin/staging
git fetch origin
Push the same to upstream/staging
like this:
git push upstream origin/staging:refs/heads/staging