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: AS53758 23.128.96.0/24 X-Spam-Status: No, score=-3.6 required=3.0 tests=AWL,BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SPF_HELO_PASS,SPF_PASS shortcircuit=no autolearn=ham autolearn_force=no version=3.4.2 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by dcvr.yhbt.net (Postfix) with ESMTP id 659B41F953 for ; Tue, 4 Jan 2022 21:54:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234297AbiADVyP (ORCPT ); Tue, 4 Jan 2022 16:54:15 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44406 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230369AbiADVyO (ORCPT ); Tue, 4 Jan 2022 16:54:14 -0500 Received: from adoakley.name (adoakley.name [IPv6:2a01:4f8:c17:1310::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 5CC7BC061761 for ; Tue, 4 Jan 2022 13:54:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=adoakley.name; s=2018; h=Content-Transfer-Encoding:Content-Type: MIME-Version:References:In-Reply-To:Message-ID:Subject:Cc:To:From:Date:Sender :Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=sHjFHO6LHlL1NqVfNULkiytmzhcSAUqbNbw8hHxnynw=; b=KjB+8D33lrkX/GtL/AVrOlEQ6h tuWobyhA7wi5W/RM5mUKjMGKRAcCu1i2GpiYl6ifkRyTDGv5NlZ4BqUj6prQKabuCqNt0b4u5+V0h XIbWlC1cCu7+g8O39gdsgDaSJwh1cwZs7EEBMsu4Suz1R06G53ljrNkb1DaPbfkhGLzA=; Received: from [2001:8b0:14bb:e93a:fd4f:6f72:643:f027] (helo=ado-tr.dyn.home.arpa) by adoakley.name with esmtpsa (TLS1.3) tls TLS_AES_256_GCM_SHA384 (Exim 4.93.0.4) (envelope-from ) id 1n4rkx-0006m0-Si; Tue, 04 Jan 2022 21:54:11 +0000 Date: Tue, 4 Jan 2022 21:54:06 +0000 From: Andrew Oakley To: Joel Holdsworth Cc: git@vger.kernel.org, Tzadik Vanderhoof , Dorgon Chang , Joachim Kuebart , Daniel Levin , Luke Diamand , Ben Keene Subject: Re: [PATCH v3 RESEND 0/2] git-p4: remove "debug" and "rollback" verbs Message-ID: <20220104215406.27298d62@ado-tr.dyn.home.arpa> In-Reply-To: <20220104123431.1710-1-jholdsworth@nvidia.com> References: <20220104123431.1710-1-jholdsworth@nvidia.com> X-Mailer: Claws Mail 3.18.0 (GTK+ 2.24.33; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Tue, 4 Jan 2022 12:34:29 +0000 Joel Holdsworth wrote: > git-p4 contains a selection of verbs for various functions of the > script. The "debug" and "rollback" verbs appear to have been added > early in the development life of git-p4. They were once used as > debugging tools, but are no longer being used either by developers or > users, and are largely undocumented. Removing these verbs simplifies > the script by removing dead code, and increases usability by reducing > complexity. I agree, these commands look rather usesless and I've never used them. The patches to remove them look correct to me. Thanks