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=-4.2 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_LOW,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 DF0D51F8C6 for ; Thu, 19 Aug 2021 17:10:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231237AbhHSRK6 (ORCPT ); Thu, 19 Aug 2021 13:10:58 -0400 Received: from pb-smtp21.pobox.com ([173.228.157.53]:64879 "EHLO pb-smtp21.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230202AbhHSRK5 (ORCPT ); Thu, 19 Aug 2021 13:10:57 -0400 Received: from pb-smtp21.pobox.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 98353136F73; Thu, 19 Aug 2021 13:10:20 -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=cEZHpY4mP+KbBksDjLQctP6bg0afHpLEgr1nGu LcEWE=; b=gon863u6KDAeX4wpcYJvOz3Q/4OqGA4s/YL7hw+8lBYOP9B7p9NoCA 50Pjr4sYDuiAgnqMzRMbTfcKqGXQTcvDd1f34zBS5xDjeZd57kIUA/IlE5hdhE/I bUBpQPF72oXmKJm0dmwwyNKMP+g3HhWZ8vD7AiY22PjXEt6Y3DI9E= Received: from pb-smtp21.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp21.pobox.com (Postfix) with ESMTP id 8FEEF136F71; Thu, 19 Aug 2021 13:10:20 -0400 (EDT) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [34.74.116.162]) (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 8B0B9136F70; Thu, 19 Aug 2021 13:10:16 -0400 (EDT) (envelope-from junio@pobox.com) From: Junio C Hamano To: "ZheNing Hu via GitGitGadget" Cc: git@vger.kernel.org, Christian Couder , Hariom Verma , =?utf-8?B?w4Z2YXIgQXJuZmrDtnI=?= =?utf-8?B?w7A=?= Bjarmason , Han-Wen Nienhuys , Ramkumar Ramachandra , Felipe Contreras , Phillip Wood , ZheNing Hu Subject: Re: [PATCH v6] [GSOC] cherry-pick: use better advice message References: Date: Thu, 19 Aug 2021 10:10:14 -0700 In-Reply-To: (ZheNing Hu via GitGitGadget's message of "Thu, 19 Aug 2021 05:51:16 +0000") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Pobox-Relay-ID: 53092444-0110-11EC-A4BD-FA9E2DDBB1FC-77302942!pb-smtp21.pobox.com Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org "ZheNing Hu via GitGitGadget" writes: > Mentored-by: Christian Couder > - Mentored-by Hariom Verma : > + Mentored-by Hariom Verma I think you meant to move ':' not remove it. > + else if (opts->action == REPLAY_PICK) > + advise(_("Resolve all conflicts manually, mark them as resolved with\n" Do we need to say "manually"? Dropping the word would make the message more concise. Not repeating the word "resolve" by saying something like "after resolving the conflicts, mark them with ..." would probably be a much better phrasing, too. > + "\"git add/rm \", then run\n" (or ) not ; you can resolve many files in a directory and give the pathspec to match the directory to mark all the files in there as resolved. > + "\"git cherry-pick --continue\".\n" > + "You can instead skip this commit: run \"git cherry-pick --skip\".\n" Inconsistent use of prose in the above and ": run" here. You can instead skip this commit with "git cherry-pick --skip" > + else if (opts->action == REPLAY_REVERT) Likewise. Thanks.