show/hide this revision's text 2 added 22 characters in body

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
show/hide this revision's text 1

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