From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Ivan Shmakov Newsgroups: gmane.emacs.devel Subject: Re: Multiple checkout copies Date: Wed, 04 Feb 2015 12:02:00 +0000 Message-ID: <87twz1ga13.fsf@violet.siamics.net> References: <874mr29i4z.fsf@Rainer.invalid> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1423051369 29067 80.91.229.3 (4 Feb 2015 12:02:49 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 4 Feb 2015 12:02:49 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Feb 04 13:02:45 2015 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 1YIyfJ-0000k8-JA for ged-emacs-devel@m.gmane.org; Wed, 04 Feb 2015 13:02:41 +0100 Original-Received: from localhost ([::1]:35780 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YIyfF-0002PO-QM for ged-emacs-devel@m.gmane.org; Wed, 04 Feb 2015 07:02:37 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:36699) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YIyev-0002P8-IK for emacs-devel@gnu.org; Wed, 04 Feb 2015 07:02:23 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YIyeu-0006Ty-Fl for emacs-devel@gnu.org; Wed, 04 Feb 2015 07:02:17 -0500 Original-Received: from fely.am-1.org ([2a01:4f8:d15:1b86::2]:37819) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YIyeu-0006Mq-6z for emacs-devel@gnu.org; Wed, 04 Feb 2015 07:02:16 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=siamics.net; s=a2013295; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID:In-Reply-To:Date:Sender:References:Subject:To:From; bh=fLOqbqyz+rRAIH3tzYhK9jQFJ/aj/cv6BfjRjTLnqR8=; b=K9/uSwceyt3ooZuPIxBwcCIXFDE5qzXj9wUsHWIacrwb6+ZQOLQlzC3vvJsfqGMk02TlhE7QM0uWVlMm6L9rOlacS6id1m3DnIJrwFJ/l6p1ayugDznmOw2HWWFTsAvQIQ7n25DA+p9lNwvbJ4r4JLzkIRWawhy807plkWYc81s=; Original-Received: from [2a02:2560:6d4:26ca::1:1d] (helo=violet.siamics.net) by fely.am-1.org with esmtps (TLS1.2:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YIyeq-0000JI-3G for emacs-devel@gnu.org; Wed, 04 Feb 2015 12:02:12 +0000 Original-Received: from localhost ([::1] helo=violet.siamics.net) by violet.siamics.net with esmtps (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YIyeg-0000Kw-8J for emacs-devel@gnu.org; Wed, 04 Feb 2015 19:02:02 +0700 Mail-Followup-To: emacs-devel@gnu.org In-Reply-To: <874mr29i4z.fsf@Rainer.invalid> (Achim Gratz's message of "Wed, 04 Feb 2015 09:48:44 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a01:4f8:d15:1b86::2 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:182366 Archived-At: >>>>> Achim Gratz writes: >>>>> Richard Stallman writes: [=E2=80=A6] >> My idea is to do my editing in the 'emacs' directory, as well as >> pulling updates there. So these points seem like features rather >> than bugs. [=E2=80=A6] > $ git clone git://git.savannah.gnu.org/emacs.git --bare emacs.git > $ git clone emacs.git/ emacs-master > $ git clone emacs.git/ emacs-24 > $ cd emacs-24 ; git checkout emacs-24 ; cd .. [=E2=80=A6] > The downside is that you must always update in two steps when pulling > (emacs.git from savannah, then the working repo from emacs.git). > However, this is easily scripted or made an alias. Yes. > Pushing also has to be done in two steps, just the other way around. Actually, it isn=E2=80=99t strictly necessary, as it=E2=80=99s possible to= give the target repository URI explicitly to git-push(1), like: $ cd emacs-master=20 $ git push -n git+ssh://USERNAME@git.sv.gnu.org/srv/git/emacs.git \ HEAD:master ; ## double check here=20 $ git push git+ssh://USERNAME@git.sv.gnu.org/srv/git/emacs.git \ HEAD:master=20 > I personally see this as an advantage, since it gives you another > check-point before things go public and become essentially immutable. I prefer to keep my bare repositories as just mirrors of the upstream ones, not cluttered with any local commits I may have. --=20 FSF associate member #7257 http://boycottsystemd.org/ =E2=80=A6 3013 B6A0= 230E 334A