From mboxrd@z Thu Jan 1 00:00:00 1970 From: Junio C Hamano Subject: Re: multiple-commit cherry-pick? Date: Thu, 06 Nov 2008 21:00:46 -0800 Message-ID: <7vskq4gmf5.fsf@gitster.siamese.dyndns.org> References: <20081106213711.GA4334@blimp.localdomain> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Alex Riesen , Miles Bader , git@vger.kernel.org To: Linus Torvalds X-From: git-owner@vger.kernel.org Fri Nov 07 06:02:50 2008 connect(): Connection refused Return-path: Envelope-to: gcvg-git-2@gmane.org Received: from vger.kernel.org ([209.132.176.167]) by lo.gmane.org with esmtp (Exim 4.50) id 1KyJUg-0007pU-7v for gcvg-git-2@gmane.org; Fri, 07 Nov 2008 06:02:50 +0100 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750755AbYKGFBI (ORCPT ); Fri, 7 Nov 2008 00:01:08 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750745AbYKGFBH (ORCPT ); Fri, 7 Nov 2008 00:01:07 -0500 Received: from a-sasl-fastnet.sasl.smtp.pobox.com ([207.106.133.19]:59073 "EHLO sasl.smtp.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750724AbYKGFBG (ORCPT ); Fri, 7 Nov 2008 00:01:06 -0500 Received: from localhost.localdomain (unknown [127.0.0.1]) by a-sasl-fastnet.sasl.smtp.pobox.com (Postfix) with ESMTP id 1C0EB7A743; Fri, 7 Nov 2008 00:01:05 -0500 (EST) Received: from pobox.com (unknown [68.225.240.211]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by a-sasl-fastnet.sasl.smtp.pobox.com (Postfix) with ESMTPSA id 8D1F87A742; Fri, 7 Nov 2008 00:00:52 -0500 (EST) In-Reply-To: (Linus Torvalds's message of "Thu, 6 Nov 2008 19:29:04 -0800 (PST)") User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/21.4 (gnu/linux) X-Pobox-Relay-ID: 14D59A16-AC89-11DD-8EED-9CEDC82D7133-77302942!a-sasl-fastnet.pobox.com Sender: git-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Archived-At: Linus Torvalds writes: > On Thu, 6 Nov 2008, Alex Riesen wrote: >> >> git format-patch --full-index --binary --stdout | git am -3 >> >> This will not work if you want to pick a list, not a range, of >> commits. > > Doesn't "--no-walk" + list commits individually work? > > So it _should_ be possible to pick a list of commits too. Although I think > that git format-patch will reverse the order. Or "git show --pretty=email $commit1 $commit2" ... piped to "am"?