From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS3215 2.6.0.0/16 X-Spam-Status: No, score=-2.1 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_CSS,URIBL_CSS_A shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from out1.vger.email (out1.vger.email [IPv6:2620:137:e000::1:20]) by dcvr.yhbt.net (Postfix) with ESMTP id 83B961F54E for ; Thu, 4 Aug 2022 17:22:17 +0000 (UTC) Authentication-Results: dcvr.yhbt.net; dkim=pass (1024-bit key; unprotected) header.d=pobox.com header.i=@pobox.com header.b="DoPuWZNp"; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233094AbiHDRWP (ORCPT ); Thu, 4 Aug 2022 13:22:15 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45110 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231248AbiHDRWN (ORCPT ); Thu, 4 Aug 2022 13:22:13 -0400 Received: from pb-smtp21.pobox.com (pb-smtp21.pobox.com [173.228.157.53]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 040F9DDE for ; Thu, 4 Aug 2022 10:22:12 -0700 (PDT) Received: from pb-smtp21.pobox.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 849BD1BDFC3; Thu, 4 Aug 2022 13:22:12 -0400 (EDT) (envelope-from junio@pobox.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=GstIqMlzVPKl9UQc0zadPwVAKhygmRl1eZLhQh EX0OE=; b=DoPuWZNpge2Ue33A4LXCd8HGO7tR5YXHGH8W0ITrJg33Bv7S2lcmtW 4MCCu+6SEAMFVqRqe4nZdGOe7sA41DFD9R+oxWmSgqJ1YoOpJvj/MLwytNX6eD3Q QdjAayXgpRSez7VjXALwP8A8PX+XEW24O3ASvQqNCyGPuYWHYTuQ0= Received: from pb-smtp21.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 7C3311BDFC2; Thu, 4 Aug 2022 13:22:12 -0400 (EDT) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [34.145.39.32]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp21.pobox.com (Postfix) with ESMTPSA id 288961BDFBD; Thu, 4 Aug 2022 13:22:09 -0400 (EDT) (envelope-from junio@pobox.com) From: Junio C Hamano To: "Victoria Dye via GitGitGadget" Cc: git@vger.kernel.org, derrickstolee@github.com, johannes.schindelin@gmx.de, =?utf-8?B?w4Z2YXIgQXJuZmrDtnLDsA==?= Bjarmason , Victoria Dye Subject: Re: [PATCH v2 00/10] Generalize 'scalar diagnose' into 'git diagnose' and 'git bugreport --diagnose' References: Date: Thu, 04 Aug 2022 10:22:08 -0700 In-Reply-To: (Victoria Dye via GitGitGadget's message of "Thu, 04 Aug 2022 01:45:33 +0000") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Pobox-Relay-ID: F85AE38E-1419-11ED-9806-CBA7845BAAA9-77302942!pb-smtp21.pobox.com Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org "Victoria Dye via GitGitGadget" writes: > * (Almost) entirely redesigned the UI for generating diagnostics. The new > approach avoids cluttering 'git bugreport' with a mode that doesn't > actually generate a report. Now, there are distinct options for different > use cases: generating extra diagnostics with a bug report ('git bugreport > --diagnose') and generating diagnostics for personal debugging/addition > to an existing bug report ('git diagnose'). An additional command gives us far more design flexibility, and in this case I think it may be worth it. It has a risk of confusing users between "git bugreport --diag" and "git diagnose --report" a way to send a report with diagnostic information, though.