[git-users] fatel error

2013-07-24 Thread Nidhi Arora
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..

-- 
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.




Re: [git-users] fatel error

2013-07-24 Thread William Seiti Mizuta
Can you give us a little more information? Like your operating system, git
version...


William Seiti Mizuta
@williammizuta
Caelum | Ensino e Inovação
www.caelum.com.br


On Wed, Jul 24, 2013 at 3:33 AM, 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..

  --
 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.




-- 
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.




Re: [git-users] fatel error

2013-07-24 Thread Nidhi Arora
i use windows-xp and git version is 1.8.3.msysgit.0


On Wed, Jul 24, 2013 at 12:09 PM, William Seiti Mizuta 
william.miz...@gmail.com wrote:

 Can you give us a little more information? Like your operating system, git
 version...


 William Seiti Mizuta
 @williammizuta
 Caelum | Ensino e Inovação
 www.caelum.com.br


 On Wed, Jul 24, 2013 at 3:33 AM, Nidhi Arora nidhi.aro...@gmail.comwrote:

 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..

  --
 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.




  --
 You received this message because you are subscribed to a topic in the
 Google Groups Git for human beings group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/git-users/_o0t518n9kI/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to
 git-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/groups/opt_out.




-- 
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.




Re: [git-users] fatel error

2013-07-24 Thread Konstantin Khomoutov
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.