From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 97339 invoked by alias); 19 Dec 2019 21:19:32 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 97331 invoked by uid 89); 19 Dec 2019 21:19:32 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-21.6 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mail-qv1-f73.google.com Received: from mail-qv1-f73.google.com (HELO mail-qv1-f73.google.com) (209.85.219.73) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 19 Dec 2019 21:19:31 +0000 Received: by mail-qv1-f73.google.com with SMTP id g15so4496114qvq.20 for ; Thu, 19 Dec 2019 13:19:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20161025; h=date:message-id:mime-version:subject:from:to:cc; bh=SOjPLQGrTMxYY3kOi2lgbCcLeo3DJThLbgcoxtUvS6s=; b=cKfmdqiGxqePl+awEfTKceog8H1h+kDw4lJdXU1chbf+CZ7uR1hUNROwSxepOMNpsy RfsYOgBxRKfFNIw0xoPeHGDqeQJ8e1JJtDcK6m25RFaA1q9QroEILSk5Dq/qiFmhPtNZ zqto6gV6Gg8z3Wlq2eiZ2EZ2i1tpiDR7W9Gn/HDYCiAin+3fCYz1UkJdk8XYcWja9B4x r6M7al95TeeEYCWaMweVKN6ZqUm6UrvgOWOaUWbdeN5azRx/wwr1qvfyDeStBb7O0q+k 9QOM1fAs9QtR3WVMChFa5GkPBDZ2kaRB84AK7gRqrdX9jIlabPQdgAukooWawgvjcY1H rT9A== Date: Thu, 19 Dec 2019 21:19:00 -0000 Message-Id: <20191219211926.219284-1-cbiesinger@google.com> Mime-Version: 1.0 Subject: [PATCH] Add profiling outputs to .gitignore From: "Christian Biesinger via gdb-patches" Reply-To: Christian Biesinger To: gdb-patches@sourceware.org Cc: Christian Biesinger Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2019-12/txt/msg00841.txt.bz2 "perf record" creates files perf.data/perf.data.old; these can be safely ignored in .gitignore, to avoid showing up in git status. ChangeLog: 2019-12-19 Christian Biesinger * .gitignore: Add perf.data and perf.data.old. Change-Id: I214ae9d6b7265c2cb1356f11c9b0b82e2b391352 --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 4460159c84..356b2eb94b 100644 --- a/.gitignore +++ b/.gitignore @@ -41,6 +41,9 @@ TAGS.sub .gdbinit .gdb_history +perf.data +perf.data.old + # ignore core files, but not java/net/protocol/core/ core !core/ -- 2.24.1.735.g03f4e72817-goog