Re: [git-users] git clone --recursive times out and fails to clone submodule

2013-10-07 Thread Konstantin Khomoutov
On Wed, 2 Oct 2013 10:53:00 -0700 (PDT)
mbkv  wrote:

> I am unable to clone a specific repository with submodules.
> 
> $ git clone --recursive
> https://www.github.com/lagadic/visp_auto_tracker.git
^^^ notice https://

> 'flashcode_mbt' (git://github.com/lagadic/flashcode_mbt.git)
> github.com[0: 192.30.252.131]: errno=Connection timed out
> 
> Clone of 'git://github.com/lagadic/flashcode_mbt.git' into submodule
> path 'flashcode_mbt' failed

^^^ notice git://

Access to the main repository proceeds via the HTTP protocol which (by
default) work on TCP port 443.
Native Git protocol, which is used to fetch the failing submodule
uses TCP port 9418 which is supposedly firewalled in your environment.

Not sure how to fix.  Supposedly clone w/o --recursive then somehow
hack the submodule description file and run `git submodule update`
or whatever applies.

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


[git-users] git clone --recursive times out and fails to clone submodule

2013-10-02 Thread mbkv


Hi,

I am unable to clone a specific repository with submodules.

$ git clone --recursive https://www.github.com/lagadic/visp_auto_tracker.git

Cloning into 'visp_auto_tracker'...
remote: Counting objects: 275, done.
remote: Compressing objects: 100% (222/222), done.
remote: Total 275 (delta 154), reused 157 (delta 42)
Receiving objects: 100% (275/275), 44.52 KiB, done.
Resolving deltas: 100% (154/154), done.
Submodule 'flashcode_mbt' (git://github.com/lagadic/flashcode_mbt.git) 
registered for path 'flashcode_mbt'
Cloning into 'flashcode_mbt'...
fatal: unable to connect to github.com:
github.com[0: 192.30.252.131]: errno=Connection timed out

Clone of 'git://github.com/lagadic/flashcode_mbt.git' into submodule path 
'flashcode_mbt' failed

This happens on UbuntuLTS12.04 git version 1.7.9.5 as well as Fedora17 git 
version 1.7.11.7.

It seems to be a network issue for sure. Because i asked other users on 
different networks to do it and it works. Any of you faced a similar 
problem? Thanks for your help.

regards,

mbkv


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