On Thu, May 25, 2017 at 6:10 PM, Vicente Vera <vicente...@gmail.com> wrote: > Hi. For a while i've been getting this error upon running 'make up0' > from my local Org repository: > > fatal: read error: Connection reset by peer
I pulled just the other day and it worked, but I use http because git doesn't work for me behind my corporate firewall. $ git remote -v origin http://orgmode.org/org-mode.git (fetch) origin http://orgmode.org/org-mode.git (push) I just cloned via http successfully, but get the "reset by peer" message via git protocol (with or without the /w/ in the URL other's have mentioned): $ git clone git://orgmode.org/w/org-mode.git org-git Cloning into 'org-git'... fatal: read error: Connection reset by peer $ git clone git://orgmode.org/org-mode.git org-git Cloning into 'org-git'... fatal: read error: Connection reset by peer Something must be up with the main site. The mirror works: $ git clone git://repo.or.cz/org-mode.git org-git Cloning into 'org-git'... remote: Counting objects: 106847, done. remote: Total 106847 (delta 0), reused 0 (delta 0) Receiving objects: 100% (106847/106847), 80.33 MiB | 572.00 KiB/s, done. Resolving deltas: 100% (83923/83923), done. John