From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brent Goodrick Subject: git://orgmode.org/org-mode.git --> git@code.orgmode.org:bzg/org-mode.git : Now password is required Date: Sat, 3 Feb 2018 12:56:44 -0800 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49834) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ei4rf-0005X6-U4 for emacs-orgmode@gnu.org; Sat, 03 Feb 2018 15:56:48 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ei4re-0003mK-T6 for emacs-orgmode@gnu.org; Sat, 03 Feb 2018 15:56:48 -0500 Received: from mail-wr0-x22b.google.com ([2a00:1450:400c:c0c::22b]:44143) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ei4re-0003ly-MP for emacs-orgmode@gnu.org; Sat, 03 Feb 2018 15:56:46 -0500 Received: by mail-wr0-x22b.google.com with SMTP id v31so25808769wrc.11 for ; Sat, 03 Feb 2018 12:56:46 -0800 (PST) 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" Cc: emacs-orgmode@gnu.org Hi, Short summary to bypass the TL;DR below: In order for me to do a 'git pull' into an existing local repo only for 'read-only' mode (not contributing changes back), I had to change my .git/config from: [remote "official"] url = git://orgmode.org/org-mode.git fetch = +refs/heads/*:refs/remotes/official/* to [remote "official"] url = https://code.orgmode.org/bzg/org-mode.git fetch = +refs/heads/*:refs/remotes/official/* Only after doing that could I do a 'git pull' without errors or password promptings. Maybe that is the way it is intended to work, but the instructions on the website imply it should work without any password requirement using the "git:" method and not the "https:" method. So I'm reporting this just in case there is some server issue, versus user error on my part. ------------------------------------------ TL;DR: detail: I have local clone of org-mode from long ago that I'm needing to update again. My .git/config file contains: [remote "official"] url = git://orgmode.org/org-mode.git fetch = +refs/heads/*:refs/remotes/official/* [branch "master"] remote = official merge = refs/heads/master I tried doing a 'git fetch' today and it gave me: fatal: unable to connect to orgmode.org: orgmode.org[0: 45.77.206.30]: errno=Connection refused So I looked on the main website at https://orgmode.org/ and it showed that something had changed w.r.t. where to clone from which is: git@code.orgmode.org:bzg/org-mode.git But cloning from that requires a password: $ git clone git@code.orgmode.org:bzg/org-mode.git Cloning into 'org-mode'... git@code.orgmode.org's password: Why is a password now required just to clone the repo? Note that this is separate from the need to push back into that repo, so my expectation is to be able to clone and use separate from committing changes back to the "official" master, all by using the normal "git:" method that is indicated as preferred on https://orgmode.org/worg/org-contribute.html (and I realized that is for contributing, but the main site still has the "git:" form listed with no indication that a password ritual is needed). Regards, Brent