If you could do all of your pushing from another branch, I think you could configure that branch to have its own separate repository to push to:
git checkout master
git branch outbound
git remote add destination <some url>
git config branch.outbound.remote destination
I haven't tried this, and you may need to do some more work to create a complete solution. It also might not work for you, if you have to push from master.
