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-Status: No, score=-3.7 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM, 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 A5B471F9FD for ; Wed, 24 Feb 2021 19:36:21 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S234644AbhBXTeq (ORCPT ); Wed, 24 Feb 2021 14:34:46 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36412 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233313AbhBXTef (ORCPT ); Wed, 24 Feb 2021 14:34:35 -0500 Received: from mail-pj1-x1036.google.com (mail-pj1-x1036.google.com [IPv6:2607:f8b0:4864:20::1036]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 05B70C061574 for ; Wed, 24 Feb 2021 11:33:55 -0800 (PST) Received: by mail-pj1-x1036.google.com with SMTP id u12so1797328pjr.2 for ; Wed, 24 Feb 2021 11:33:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=MzRWAN5Z7bAKVVbjJsnGHQ9VXjGhh+goqSNyV8MtBJY=; b=K4V1r7BNb/SnZcVlDCZ4xcTWfImUFdswKq3gc8d1Sj/3AZevA6JNOv3uf5F13uRkeP ebHrsJd0MJEUmut8dTa1xJM1qnddQvev/Y0TtxDVNXg6L4yqCRTWB5PIQmMUBhDYuUty bXYnZDwHdr97gr50fKVgOkcTh1898PEitlvyDYChwJu0hXqm/ES3EOvlGfluygiONrO0 K5pnN78hFN8msJl9o0oQdfi0WCLeVeagJmwK6UXdUOHwUbPhE9bpdOh0/fFJ+uKF5mlW 6OX55/xKOxbgqIqvP47P2pUaQVTyFRdaXZ7XWmVvCgZkqSkybDYWxJSrz67nA7WApSri eWrw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=MzRWAN5Z7bAKVVbjJsnGHQ9VXjGhh+goqSNyV8MtBJY=; b=MevgFJxFq3iAfQpkFyq7IBlCJ0okqPzx43rKN7C72+pN78ub9175EBA5Pjro25ZUcl Iq3tmq6by4bIVJuxs3aYYMEkaDlA7SLkWJf0FdQp6JkTEthK2DSHDqsxsSECGCXm/o9d cghQAW54QufT2e+gvGoErZvj5e4aYWSFg1/pa4jiI0lMjq5QqvcAbOVqP7Ms7A8KpZ/6 kNklTSr4xsGTRQ2PAZP/YyaLxJqjEq7RGWBOtObnnS1Wdo1/UW6CPwa/01RpDxB9xK5v h0/igzTff2OyLfrV0aTlpBhugBR0B7fdUp6rOlyjkvF8IRb8oVDMe86FDr9k2ime0L8U w34Q== X-Gm-Message-State: AOAM532cT3g9lSpabUnQVJk1VdhH6adDBhy4xZlffKLFYxy49A5x8Nln /OzZJkXp7kEh9LPRTJtrKINxxmCqQcIC6KVvuRZbx/a2N0U= X-Google-Smtp-Source: ABdhPJw+i/TEBLbBnEC5l1Axr+9Xsj+vsWc3zEpkuQ6Mh4sRUnEylUn/HFDUc0X3XXzeD0GazpSf/tPsDuA6yFpftqQ= X-Received: by 2002:a17:90b:34c:: with SMTP id fh12mr5871982pjb.137.1614195234606; Wed, 24 Feb 2021 11:33:54 -0800 (PST) MIME-Version: 1.0 References: <20210223071840.44267-1-alexhenrie24@gmail.com> In-Reply-To: <20210223071840.44267-1-alexhenrie24@gmail.com> From: =?UTF-8?Q?Martin_=C3=85gren?= Date: Wed, 24 Feb 2021 20:33:43 +0100 Message-ID: Subject: Re: [PATCH v3] rebase: add a config option for --no-fork-point To: Alex Henrie Cc: Git Mailing List , Junio C Hamano , Denton Liu Content-Type: text/plain; charset="UTF-8" Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org On Tue, 23 Feb 2021 at 08:24, Alex Henrie wrote: > +rebase.forkPoint: > + If set to false set `--no-fork-point` option by default. This should be a double-colon at end of the line, not just a single colon, in order to make it a "description list separator". When it's just ":", it ends up being rendered literally, which isn't horrible, to be sure, but which doesn't match this item's neighbours. Martin