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=-4.0 required=3.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI,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 59F9B1F9FD for ; Thu, 4 Mar 2021 01:17:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233106AbhCDBRB (ORCPT ); Wed, 3 Mar 2021 20:17:01 -0500 Received: from pb-smtp20.pobox.com ([173.228.157.52]:63676 "EHLO pb-smtp20.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232894AbhCDBQw (ORCPT ); Wed, 3 Mar 2021 20:16:52 -0500 Received: from pb-smtp20.pobox.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id 3E3F5111053; Wed, 3 Mar 2021 20:16:10 -0500 (EST) (envelope-from junio@pobox.com) DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=orRLeL1LEyBrr7Vxoz4aVTl1i5c=; b=a/5rfI LnqCf6zArQP4eb4vlMJU/ha4EQrzFQc6yr6VYfkB5Yn1NsQBODNtuHvKjSlIDkkq Y2iuNeKaJgotIA0m1e8tY6tvfXW3sEl3agP2nqG379cvindrFkKpNWRL6F2O2jRv ZIHDX6Pj+EPx4uSGKBQ9oESPydJaUth2pOOxs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; q=dns; s=sasl; b=dGfgUq5k91R7ND/PBOdT/4YegKdlaPrD aAuZvrjBQqOmv4lkYDXSPQThACUQ9IG5boCFLngqT+UXeB3nWbAWTgm8jshuE5Dz 2Pwj+aNucGfWlOw7Z4fyX8qriSLtZ133TFlpY1276pNixUvvYmQjcBQ+v4TlZrfb bC4zKY1iWp8= Received: from pb-smtp20.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id 36C92111051; Wed, 3 Mar 2021 20:16:10 -0500 (EST) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [34.74.119.39]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp20.pobox.com (Postfix) with ESMTPSA id 774F7111050; Wed, 3 Mar 2021 20:16:07 -0500 (EST) (envelope-from junio@pobox.com) From: Junio C Hamano To: "Julien Richard via GitGitGadget" Cc: git@vger.kernel.org, Julien Richard , Julien Richard Subject: Re: [PATCH] Fix small typo in .gitignore documentation References: Date: Wed, 03 Mar 2021 17:16:05 -0800 In-Reply-To: (Julien Richard via GitGitGadget's message of "Wed, 03 Mar 2021 12:40:54 +0000") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1.90 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Pobox-Relay-ID: 3286A88A-7C87-11EB-8095-E43E2BB96649-77302942!pb-smtp20.pobox.com Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org "Julien Richard via GitGitGadget" writes: > diff --git a/Documentation/gitignore.txt b/Documentation/gitignore.txt > index d47b1ae29637..5751603b13f4 100644 > --- a/Documentation/gitignore.txt > +++ b/Documentation/gitignore.txt > @@ -153,7 +153,7 @@ EXAMPLES > -------- > > - The pattern `hello.*` matches any file or folder > - whose name begins with `hello`. If one wants to restrict > + whose name begins with `hello.`. If one wants to restrict > this only to the directory and not in its subdirectories, > one can prepend the pattern with a slash, i.e. `/hello.*`; > the pattern now matches `hello.txt`, `hello.c` but not Thanks, will queue.