in git, how I can add a remote origin when my host use a different ssh port?
git remote add origin ssh://user@host/srv/git/example
views:
28answers:
2
+1
A:
You can just do this:
git remote add origin ssh://user@host:1234/srv/git/example
igorw
2010-08-29 19:38:50