Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

2 Answers

up vote 72 down vote accepted

You can just do this:

git remote add origin ssh://user@host:1234/srv/git/example
share|improve this answer
Thx. Just a complement : in the path part, use absolute path, not a relative path to user home directory... – Snicolas May 28 '12 at 19:54
@Snicolas : Why shall one not use a relative path? – Hannes May 30 '12 at 19:24
1  
As it doesn't work.. – Snicolas May 30 '12 at 20:10
3  
@Sincolas It works if you have the repo in the users home directory: /home/someuser/git-repos/example.git --> ssh://someuser@<host>:<port>/~/git-repos/example.git . btw: you get a <name>.git repo by git clone --bare <adress> – MartinL Oct 4 '12 at 18:41
what would an absolute path look like in this case??? – Jameo Dec 12 '12 at 20:52
show 3 more comments

You need to edit your ~/.ssh/config file. Add something like the following:

Host example.com
    Port 1234

A quick google search shows a few different resources that explain it in more detail than me.

share|improve this answer
That doesn't work, it defaults to 22. – jmoz Jul 3 '12 at 16:55
4  
It did work for me. I like this approach better than sticking it in the git remote. Thanks! No need to specify an absolute path either this way. – Michael van Rooijen Jul 21 '12 at 22:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.