Sivaguru,

You might also want to try using the ssh protocol instead of the http or git
URLs. i.e. [email protected]:meego-os-base/image-configurations.git

Also check to make sure your .git/config file uses the matching protocol.

For example: 

If you use "git clone
[email protected]:meego-os-base/image-configurations.git" to create your
repo clone, make sure your .git/config uses the same url. I have run into
occasions where there was a mismatch and gotten very similar error to the
kind you are seeing.

Sample config file using ssh link:

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
[remote "origin"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = [email protected]:meego-os-base/image-configurations.git
[branch "master"]
        remote = origin
        merge = refs/heads/master
[branch "MeeGo1.1"]
        remote = origin
        merge = refs/heads/MeeGo1.1

If you are using a proxy, you may also want to configure your ssh_config
file. The man page for ssh_config has a section on the proxy command that
you may find useful.


Host *.gitorious.org *.foo.com whatever.org 

        Protocol 2

        # Go out via the SOCKS proxy server (preferred)

        ProxyCommand /usr/local/bin/connect -4 -S
<your.proxy.here.com>:<port> %h %p

        # Go out via the HTTPS proxy server.

        #ProxyCommand /etc/ssh/connect -H <your.proxy.here.com>:<port> %h %p

        KeepAlive yes


Also, you might want to double check your ssh keys and make sure the one you
uploaded is correct. You can run into issues if the host name doesn't appear
correctly, etc. i.e. joe@foo instead of [email protected]. Things like that.

Just some ideas to throw at you to try. :)

Tracy


-----Original Message-----
From: [email protected] [mailto:[email protected]] On
Behalf Of Jeremiah Foster
Sent: Thursday, March 24, 2011 7:21 AM
To: Perambalam, Sivaguru
Cc: [email protected]
Subject: Re: [MeeGo-dev] Unable to get image-creator

On Wed, Mar 23, 2011 at 11:30 PM, Perambalam, Sivaguru
<[email protected]> wrote:
> Hello,


>
> I get the following error while I try to download mic2 image-creator
>
>
>
> speramba@siva-desktop:~/Meego$ git clone
> git://gitorious.org/meego-developer-tools/image-creator.git
>
> Initialized empty Git repository in
/home/speramba/Meego/image-creator/.git/
>
> gitorious.org[0: 87.238.52.168]: errno=Connection timed out
>
> gitorious.org[0: 2a02:c0:1014::1]: errno=Network is unreachable
>
> fatal: unable to connect a socket (Network is unreachable)


> Can someone tell me what's wrong ? I suspect something related to proxy
> settings is incorrect.

Do you have a proxy? Is it letting out traffic on port 80? (That is
the port that curl will use when called by git for http.)

This seems like a network issue on your side and not anything MeeGo related.

Jeremiah
_______________________________________________
MeeGo-dev mailing list
[email protected]
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines

_______________________________________________
MeeGo-dev mailing list
[email protected]
http://lists.meego.com/listinfo/meego-dev
http://wiki.meego.com/Mailing_list_guidelines

Reply via email to