From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-17.0 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 68157C433ED for ; Sun, 25 Apr 2021 06:24:45 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 3878661492 for ; Sun, 25 Apr 2021 06:24:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229741AbhDYGZX (ORCPT ); Sun, 25 Apr 2021 02:25:23 -0400 Received: from conuserg-11.nifty.com ([210.131.2.78]:20872 "EHLO conuserg-11.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229522AbhDYGZW (ORCPT ); Sun, 25 Apr 2021 02:25:22 -0400 Received: from localhost.localdomain (133-32-232-101.west.xps.vectant.ne.jp [133.32.232.101]) (authenticated) by conuserg-11.nifty.com with ESMTP id 13P6OBfJ031298; Sun, 25 Apr 2021 15:24:12 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com 13P6OBfJ031298 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1619331852; bh=IDaty5KBUv4KvNn1NKFpnKgaifUb/3fKJ0ylZZpF9Fw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VNgJOMUzKHt35KK6YEKMbfAmoPHnWS8CSMFt/imppV54FoxLVHJRF4GImBDb/Zz9E B3+vy+eLeVfRibG4njgTdllCzZkFnUBwcTpzI06UcV0jeJKKxlWO8tuF5Qz6Unp9EB KkcLntjC/jUVVQXMaTdp2THB3daCq1LYn7VSKn6DfNOB7d80+wj97a52/xFEDxUOHF umKLXMubnWSFfaC3TfrggTXKvRpzTkYP9wkFhXndjupcxC71vL2hfFQjMoI1zLaqc2 gTP54BMaJvP1RImisd9WesJDUqY+PUSlJCi12pGBj5BFNaRNocmTquO6bF8jKlxJ/y tZD8kYd6XJPfA== X-Nifty-SrcIP: [133.32.232.101] From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH 2/5] .gitignore: move tags and TAGS close to other tag files Date: Sun, 25 Apr 2021 15:24:04 +0900 Message-Id: <20210425062407.1183801-2-masahiroy@kernel.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20210425062407.1183801-1-masahiroy@kernel.org> References: <20210425062407.1183801-1-masahiroy@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org For consistency, move tags and TAGS close to the cscope and GNU Global patterns. I removed the '/' prefix in case somebody wants to manually create tag files in sub-directories. Signed-off-by: Masahiro Yamada --- .gitignore | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index df8d3146a43f..deb68b7555ad 100644 --- a/.gitignore +++ b/.gitignore @@ -54,8 +54,6 @@ modules.order # # Top-level generic files # -/tags -/TAGS /linux /modules-only.symvers /vmlinux @@ -114,6 +112,10 @@ patches-* patches series +# ctags files +tags +TAGS + # cscope files cscope.* ncscope.* -- 2.27.0