From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Re: Git repository error Date: Sat, 27 May 2017 15:50:11 -0500 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54054) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dEif8-0004xE-Jr for emacs-orgmode@gnu.org; Sat, 27 May 2017 16:50:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dEif7-0007PT-K9 for emacs-orgmode@gnu.org; Sat, 27 May 2017 16:50:14 -0400 Received: from mail-io0-x233.google.com ([2607:f8b0:4001:c06::233]:34091) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dEif7-0007PN-FE for emacs-orgmode@gnu.org; Sat, 27 May 2017 16:50:13 -0400 Received: by mail-io0-x233.google.com with SMTP id k91so25241710ioi.1 for ; Sat, 27 May 2017 13:50:12 -0700 (PDT) In-Reply-To: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Vicente Vera Cc: emacs-orgmode On Thu, May 25, 2017 at 6:10 PM, Vicente Vera 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