From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12389 invoked by alias); 27 Feb 2011 17:50:38 -0000 Mailing-List: contact archer-help@sourceware.org; run by ezmlm Sender: Precedence: bulk List-Post: List-Help: List-Subscribe: List-Id: Received: (qmail 12379 invoked by uid 22791); 27 Feb 2011 17:50:37 -0000 X-SWARE-Spam-Status: No, hits=-6.3 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Date: Sun, 27 Feb 2011 17:50:00 -0000 From: Jan Kratochvil To: Joel Brobecker Cc: Pierre Muller , archer@sourceware.org Subject: Re: [Archer] Question about archer branch managment Message-ID: <20110227175003.GA28937@host1.dyn.jankratochvil.net> References: <00ab01cbd415$9e3e8410$dabb8c30$@muller@ics-cnrs.unistra.fr> <20110224113228.GE2513@adacore.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20110224113228.GE2513@adacore.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-SW-Source: 2011-q1/txt/msg00112.txt.bz2 On Thu, 24 Feb 2011 12:32:28 +0100, Joel Brobecker wrote: > Hmmm, I thought that > > $ git push origin archer-tromey-explosion-project > > would have worked right from the get go... Really not: $ rm -rf 1 2;mkdir 1 2;cd 1;git init;touch f;git add f;git commit -m f f;cd ..;git clone 1 2;cd 2;git checkout -b x;git push origin ;cd ../1;git branch;cd .. Switched to a new branch 'x' Everything up-to-date * master but $ rm -rf 1 2;mkdir 1 2;cd 1;git init;touch f;git add f;git commit -m f f;cd ..;git clone 1 2;cd 2;git checkout -b x;git push origin x:x;cd ../1;git branch;cd .. Switched to a new branch 'x' Total 0 (delta 0), reused 0 (delta 0) To /tmp/gittest3/1 * [new branch] x -> x * master x Regards, Jan