You can do this (assuming you are checked out on master and want to push to a remote branch master:
set up the 'remote' if you dont have it already
# git remote add origin ssh://...
now configure master to know to track
# git config branch.master.remote origin
# git config branch.master.merge refs/heads/master
and push
# git push origin master
