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=-16.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,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 CAFA5C433ED for ; Thu, 8 Apr 2021 21:25:07 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9751561181 for ; Thu, 8 Apr 2021 21:25:07 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232426AbhDHVZS (ORCPT ); Thu, 8 Apr 2021 17:25:18 -0400 Received: from ex13-edg-ou-001.vmware.com ([208.91.0.189]:20423 "EHLO EX13-EDG-OU-001.vmware.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232397AbhDHVZQ (ORCPT ); Thu, 8 Apr 2021 17:25:16 -0400 Received: from sc9-mailhost1.vmware.com (10.113.161.71) by EX13-EDG-OU-001.vmware.com (10.113.208.155) with Microsoft SMTP Server id 15.0.1156.6; Thu, 8 Apr 2021 14:25:00 -0700 Received: from vypre.com (unknown [10.21.244.31]) by sc9-mailhost1.vmware.com (Postfix) with ESMTP id 2E365212B6; Thu, 8 Apr 2021 14:25:04 -0700 (PDT) From: Steven Rostedt To: CC: "Steven Rostedt (VMware)" Subject: [PATCH v2 1/5] libtraceevent: Update gitignore Date: Thu, 8 Apr 2021 17:24:56 -0400 Message-ID: <20210408212500.2058159-2-rostedt@goodmis.org> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210408212500.2058159-1-rostedt@goodmis.org> References: <20210408212500.2058159-1-rostedt@goodmis.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7BIT Content-Type: text/plain; charset=US-ASCII Received-SPF: None (EX13-EDG-OU-001.vmware.com: rostedt@goodmis.org does not designate permitted sender hosts) Precedence: bulk List-ID: X-Mailing-List: linux-trace-devel@vger.kernel.org From: "Steven Rostedt (VMware)" Update the gitignore files to not pick up files that are created in the build as well as those auxiliary files used for creating the man pages. Signed-off-by: Steven Rostedt (VMware) --- .gitignore | 5 +++++ Documentation/.gitignore | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 Documentation/.gitignore diff --git a/.gitignore b/.gitignore index 7123c70..fde7fe6 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,8 @@ TRACEEVENT-CFLAGS libtraceevent-dynamic-list libtraceevent.so.* +*.o +build_prefix +build_uninstall +*~ +\#*\# diff --git a/Documentation/.gitignore b/Documentation/.gitignore new file mode 100644 index 0000000..bdc8252 --- /dev/null +++ b/Documentation/.gitignore @@ -0,0 +1,3 @@ +*.m +*.3 +*.html -- 2.29.2