[Archer] Question about archer branch managment

Jan Kratochvil jan.kratochvil@redhat.com
Sun Feb 27 17:50:00 GMT 2011


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



More information about the Archer mailing list