On Tue, 23 Jul 2013 23:33:31 -0700 (PDT)
Nidhi Arora <nidhi.aro...@gmail.com> wrote:

> when i use $ git clone git://git.kernel.org/pub/scm/git/git.git
> 
> then fatal error is come: unable to connect to git kernel.org(port
> 9418)(no such is know.) help me..

The git:// protocol uses TCP to connect to port 9418 on the remote host
(git.kernel.org), so to verify it's not a Git's fault but a general
network problem, try doing

telnet git.kernel.org 9418

in your command shell.  If it errors out with a similar message, then
you most probably have outgoing connections to TCP/9418 disabled by your
network setup (possibly denied by a firewall somewhere).

Solving this issue has nothing to do with Git, but first I'd try HTTP
transport:

git clone http://git.kernel.org/pub/scm/git/git.git

Traffic coming to port TCP/80 used by HTTP has much higher chances to
be let through by firewalls, and it's supported by git.kernel.org.

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to git-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to