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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 2CA6BEE49A0 for ; Wed, 23 Aug 2023 06:58:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231489AbjHWG6K (ORCPT ); Wed, 23 Aug 2023 02:58:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34024 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231276AbjHWG6J (ORCPT ); Wed, 23 Aug 2023 02:58:09 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0672BCE8 for ; Tue, 22 Aug 2023 23:57:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1692773840; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=Wf7j/CzuuBdAW8b19UpCAM040rVS535bq8jgXLZaqzA=; b=UTWpj9ELqHN/01dnt8x3UjimtoBxfayZBompPorecn4hjtKKh8uX/nEkXTA5IhSmuxXVaR hU2EOzv2TwFRnajWb+GxzbOv6VHSe+uU3lxbIys5f1QxD5RCdOw3RpQ/oHKrGaA8sSbXkF 7xMLZvvvzocwl/hNlIMieclnE7jc52I= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-180-05IF3m9jNuy_VWyDogmwgA-1; Wed, 23 Aug 2023 02:57:17 -0400 X-MC-Unique: 05IF3m9jNuy_VWyDogmwgA-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id A4A50853070 for ; Wed, 23 Aug 2023 06:57:17 +0000 (UTC) Received: from localhost.localdomain (unknown [10.39.192.207]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 20EF940C2079; Wed, 23 Aug 2023 06:57:17 +0000 (UTC) From: Thomas Haller To: NetFilter Cc: Thomas Haller Subject: [nft PATCH] gitignore: ignore cscope files Date: Wed, 23 Aug 2023 08:56:08 +0200 Message-ID: <20230823065705.1571696-1-thaller@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 3.1 on 10.11.54.1 Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org Cscope is useful. Ignore the files it creates. Signed-off-by: Thomas Haller --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index d6f17e4fc229..2c12c4409720 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,9 @@ build-aux/ libnftables.pc libtool +# cscope files +/cscope.* + # Generated by tests *.payload.got tests/build/tests.log -- 2.41.0