up vote 6 down vote favorite
3
share [g+] share [fb]

I'm a little hesitant to post this, as I'm not completely sure what I'm doing. Any help would be wonderful.

I'm on a computer with a firewall/filter on it. I can download files without any difficulty. When I try to clone files from Github, though, the computer just hangs. Nothing happens. It creates a git file in the folder, but the key files don't get loaded in. For context, I'm working on a Rails app, trying to load in Restful Authentication.

Have any of you dealt with this? Any suggestions for getting the clone to work? Disabling the firewall might be an option, but if I can do something without going through that process, I'd appreciate it.

link|improve this question

feedback

5 Answers

up vote 4 down vote accepted

Github supports cloning using both the git protocol over port 9418 and HTTP over port 80. Using the later is very slow (Reference). You should open port 9418 on your firewall or use HTTP cloning otherwise.

link|improve this answer
It seems github redirects http to https (port 443) so plain HTTP cloning is no longer possible - opening up port 443 or 9418 is now the only option. – Greg Nov 9 '11 at 3:41
feedback

The git:// protocol uses port 9418, so you should make sure your firewall allows outbound connections to this port.

link|improve this answer
feedback

Or... just change the "git://" prefix to "http://"

link|improve this answer
feedback

If you're firewalled out of existence and want the speed of git, I use something like

$ ssh rdp@some_host -L9418:github.com:9418 # run in one windows

then git clone git://github.com/jruby/jruby.git

becomes

$ git clone git://localhost/jruby/jruby.git

link|improve this answer
feedback

I'm use git clone git@ssh.github.com:xxx.user/xxx.proj

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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