Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751219AbZGPGzu (ORCPT ); Thu, 16 Jul 2009 02:55:50 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750905AbZGPGzt (ORCPT ); Thu, 16 Jul 2009 02:55:49 -0400 Received: from a-pb-sasl-sd.pobox.com ([64.74.157.62]:52068 "EHLO sasl.smtp.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750825AbZGPGzt (ORCPT ); Thu, 16 Jul 2009 02:55:49 -0400 To: Jeff Garzik Cc: git@vger.kernel.org, LKML Subject: Re: [ANNOUNCE] GIT 1.6.4.rc1 References: <7vmy75bg2f.fsf@alter.siamese.dyndns.org> <4A5EA598.5050801@garzik.org> <7v3a8xb0lz.fsf@alter.siamese.dyndns.org> <4A5ECC09.3010405@garzik.org> From: Junio C Hamano Date: Wed, 15 Jul 2009 23:55:41 -0700 Message-ID: <7vocrl9kwi.fsf@alter.siamese.dyndns.org> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Pobox-Relay-ID: B1617410-71D5-11DE-8894-9AE02FB70C38-77302942!a-pb-sasl-sd.pobox.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1194 Lines: 28 Jeff Garzik writes: > I want to publish this tree to the world via a *.kernel.org-like > system, so my task is to > > scp -r /spare/repo/cld/.git remote.example.com:/pub/scm/cld.git > > but if I do this with scp, then future pushes to > remote.example.com:/pub/scm/cld.git emit the warning about updating > the currently checked-out branch I think "scp -r" is a wrong way to "clone", as it will copy .git/config that is specific to your local work tree that does not apply to the situation at remote.example.com anyway. You do not want to push into your local repository with a work tree you are "scp -r"ing out of, but you do want to push into the one at remote.example.com. Interestingly enough, we had a two separate thread about making a bare repository out of a repository with a work tree today ;-) remote.example.com$ cd /pub/scm/ remote.example.com$ git clone --bare over.there:/spare/repo/cld/.git cld.git -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/