[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Orgmode] Re: problems cloning the org mode git repo
From: |
Bernt Hansen |
Subject: |
[Orgmode] Re: problems cloning the org mode git repo |
Date: |
Thu, 20 Mar 2008 11:51:24 -0400 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux) |
Detlef Steuer <address@hidden> writes:
> On Tue, 18 Mar 2008 17:09:48 -0400
> Bernt Hansen <address@hidden> wrote:
>
>> One thing you can try is to verify you can connect to the git port on
>> the remote server. The remote port is 9418 so as long as this outbound
>> port is not blocked you should get a quick response with Connected to
>> rover4.or.cz.
>>
>> address@hidden:~/org$ telnet git.or.cz 9418
>> Trying 62.24.64.27...
>> Connected to rover4.or.cz.
>> Escape character is '^]'.
>
>
> and exactly here it hangs for me :-(
It's connected and waiting for input. It's not hung. You need to hit
ctrl-] to get the telnet prompt and then type quit to close the connection.
> address@hidden:~> telnet 62.24.64.27 9418
> Trying 62.24.64.27...
> Connected to 62.24.64.27.
> Escape character is '^]'.
>
>
> That works, but git simply does not work for me.
> (did before, so no firewall issue)
> git clone git://repo.or.cz/org-mode.git
> Initialized empty Git repository
> in /home/steuer/Softtest/GIT-extern/org-mode/.git/
>
>
> I did a very long wait, no timeout, nothing happened.
It worked before? Maybe there's a network issue or the remote server is
down for maintenance or something. I would just try it again I think.
On linux using the exact command you specified the clone finishes in 33
seconds for me.
address@hidden:/tmp$ time git clone git://repo.or.cz/org-mode.git
Initialized empty Git repository in /tmp/org-mode/.git/
remote: Counting objects: 2293, done.
remote: Compressing objects: 100% (778/778), done.
remote: Total 2293 (delta 1507), reused 2293 (delta 1507)
Receiving objects: 100% (2293/2293), 25.68 MiB | 1027 KiB/s, done.
Resolving deltas: 100% (1507/1507), done.
real 0m32.970s
user 0m4.500s
sys 0m1.024s
address@hidden:/tmp$
I'm using a hot-off-the-press development version
address@hidden:/tmp$ git --version
git version 1.5.5.rc0.6.gdeda
but any version post 1.5.3 should work fine I think.
-Bernt