Nick Dokos <nicholas.do...@hp.com> wrote: > Eric Schulte <eric.schu...@gmx.com> wrote: > > > Nick Dokos <nicholas.do...@hp.com> writes: > > > > > Marcelo de Moraes Serpa <celose...@gmail.com> wrote: > > > > > >> Bastien, > > >> > > >> I can't clone the orgweb repo: > > >> > > >> git clone git://orgmode.org/orgweb.git > > >> Cloning into 'orgweb'... > > >> fatal: The remote end hung up unexpectedly > > >> > > >> Is the server is down? > > >> > > > > > > I can't get to it either, but I am behind a firewall and have had > > > problems with the socks proxy I usually use. After I switched proxies, > > > I *was* able to do a git pull on the emacs repository though, so I > > > suspect the fault is at orgmode.org's end. > > > > > > > > > orgmode.org was recently moved to a new machine, so you will have to > > update any tools which check MAC addresses for things like man in the > > middle attacks. I did have to update my ~/.ssh/known_hosts this morning > > to remove the old key. > > > > I don't think that I have anything like that. The IP address resolves to > > ,---- > | $ host orgmode.org > | orgmode.org has address 198.101.246.4 > | orgmode.org mail is handled by 0 deathroller.dunsmor.com. > `---- > > and I can get to http://orgmode.org, I just can't get to it through git: > > ,---- > | $ tsocks git clone git://orgmode.org/org-mode.git > | Cloning into org-mode... > | fatal: The remote end hung up unexpectedly > `---- > > > > I've since been using the git repo on the orgmode server without > > problem. > > > > Presumably through ssh? If so, port 22 is open. I wonder if there is some > restriction on the git port (9418 by default) though. > > Nick >
One other data point: if I change the protocol to http in .git/config, things are working - changing it back to git breaks it again: ,---- | $ git pull | From http://orgmode.org/org-mode | ac9ed2a..5083790 maint -> origin/maint | 23b30cd..34db1c2 master -> origin/master | Updating 23b30cd..34db1c2 | Fast-forward | contrib/lisp/org-wikinodes.el | 6 +++--- | doc/org.texi | 23 ++++++++++++++++++++--- | lisp/Makefile | 13 +++++++++++-- | lisp/org-agenda.el | 2 +- | lisp/org-clock.el | 3 ++- | lisp/org.el | 1 + | mk/targets.mk | 9 +-------- | 7 files changed, 39 insertions(+), 18 deletions(-) | | # change it back to git: | git pull | fatal: The remote end hung up unexpectedly `---- So it seems to me that either the git daemon is not running or the port is unreachable. Nick