From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-3.6 required=3.0 tests=AWL,BAYES_00, FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,SPF_HELO_NONE,SPF_PASS, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from out1.vger.email (out1.vger.email [IPv6:2620:137:e000::1:20]) by dcvr.yhbt.net (Postfix) with ESMTP id 9F97C1F452 for ; Thu, 27 Apr 2023 08:12:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242886AbjD0IL0 (ORCPT ); Thu, 27 Apr 2023 04:11:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36908 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233094AbjD0ILZ (ORCPT ); Thu, 27 Apr 2023 04:11:25 -0400 Received: from bluemchen.kde.org (bluemchen.kde.org [209.51.188.41]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2309B2D71 for ; Thu, 27 Apr 2023 01:11:24 -0700 (PDT) Received: from ugly.fritz.box (localhost [127.0.0.1]) by bluemchen.kde.org (Postfix) with ESMTP id BDC8824196; Thu, 27 Apr 2023 04:11:22 -0400 (EDT) Received: by ugly.fritz.box (masqmail 0.3.4, from userid 1000) id 1prwio-sbB-00; Thu, 27 Apr 2023 10:11:22 +0200 Date: Thu, 27 Apr 2023 10:11:22 +0200 From: Oswald Buddenhagen To: git@vger.kernel.org Cc: Jeff King , Taylor Blau , Derrick Stolee , Junio C Hamano Subject: Re: [PATCH] format-patch: add --description-file option Message-ID: Mail-Followup-To: git@vger.kernel.org, Jeff King , Taylor Blau , Derrick Stolee , Junio C Hamano References: <20230323162234.995420-1-oswald.buddenhagen@gmx.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20230323162234.995420-1-oswald.buddenhagen@gmx.de> Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org ping! On Thu, Mar 23, 2023 at 05:22:34PM +0100, Oswald Buddenhagen wrote: >When formatting patches from a detached HEAD, there is no branch >description to derive the cover letter from. While with format-patch >one could post-process the generated file (which would be ugly enough), >scripting that with send-email would be *really* ugly. So add an option >to feed a description directly. >