From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Bob Proulx Newsgroups: gmane.emacs.devel Subject: Re: Git transition checklist Date: Sun, 12 Jan 2014 13:15:27 -0700 Message-ID: <20140112201527.GA23558@hysteria.proulx.com> References: <20140108135200.8ECF9380834@snark.thyrsus.com> <87fvoy4hf0.fsf@bzg.ath.cx> <20140108161918.GB3877@thyrsus.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1389557740 12015 80.91.229.3 (12 Jan 2014 20:15:40 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 12 Jan 2014 20:15:40 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jan 12 21:15:48 2014 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1W2RRj-0002u3-Vu for ged-emacs-devel@m.gmane.org; Sun, 12 Jan 2014 21:15:48 +0100 Original-Received: from localhost ([::1]:39343 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2RRf-0001MZ-Br for ged-emacs-devel@m.gmane.org; Sun, 12 Jan 2014 15:15:43 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:51275) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2RRV-0001Gm-Ut for emacs-devel@gnu.org; Sun, 12 Jan 2014 15:15:39 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W2RRQ-0000le-Ue for emacs-devel@gnu.org; Sun, 12 Jan 2014 15:15:33 -0500 Original-Received: from joseki.proulx.com ([216.17.153.58]:57499) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2RRQ-0000kj-HL for emacs-devel@gnu.org; Sun, 12 Jan 2014 15:15:28 -0500 Original-Received: from hysteria.proulx.com (hysteria.proulx.com [192.168.230.119]) by joseki.proulx.com (Postfix) with ESMTP id 8249121227 for ; Sun, 12 Jan 2014 13:15:27 -0700 (MST) Original-Received: by hysteria.proulx.com (Postfix, from userid 1000) id 4FDE42DCD2; Sun, 12 Jan 2014 13:15:27 -0700 (MST) Mail-Followup-To: emacs-devel@gnu.org Content-Disposition: inline In-Reply-To: <20140108161918.GB3877@thyrsus.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 216.17.153.58 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:168235 Archived-At: Eric S. Raymond wrote: > Bastien wrote: > > ~$ git clone @git://git.sv.gnu.org/emacs > > This does not work. I think it should be > > > > ~$ git clone @git.sv.gnu.org:/srv/git/emacs.git > > You are correct. Fixed. I would like to note that the final ".git" suffix at the end is optional. For some reason by the time I have typed in the *fourth* set of characters "git" on a line I tend to think it is just too many strings of "git" on a line. :-) So personally I tend to leave off the final .git on the end. It will be added if it is not specified. And stripped to create the local target name if added and the target directory is not specified. This is fine for anonymous public access since that is already rooted at /srv/git on the server side: git clone git://git.sv.gnu.org/emacs This is fine for logged in with ssh read-write access: git clone username@git.sv.gnu.org:/srv/git/emacs Or with .git on the end is fine too if you prefer. git clone git://git.sv.gnu.org/emacs.git git clone username@git.sv.gnu.org:/srv/git/emacs.git Yet another alternative ssh read-write access path would be to use the URL syntax for ssh. git clone ssh://username@git.sv.gnu.org/srv/git/emacs The ssh URL syntax tends to be used less than the scp-like syntax. Bob