From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [PATCH v2 4/4] .gitignore: ignore build directories Date: Mon, 11 Mar 2019 10:57:32 +0000 Message-ID: <20190311105732.24121-4-bruce.richardson@intel.com> References: <20190306170557.65627-1-bruce.richardson@intel.com> <20190311105732.24121-1-bruce.richardson@intel.com> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: Stephen Hemminger , Thomas Monjalon , Rami Rosen , Bruce Richardson To: dev@dpdk.org Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 7A9944C9D for ; Mon, 11 Mar 2019 11:57:47 +0100 (CET) In-Reply-To: <20190311105732.24121-1-bruce.richardson@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" test-meson-build.sh generates multiple build directories for various targets. As these follow a known pattern, and since they don't need to be tracked in git, we can add them to the gitignore file, along with the default build directory "build". Signed-off-by: Bruce Richardson --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index 79509c35d..73822ae5e 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,7 @@ TAGS # ignore hidden files .* + +# ignore default build directory, and directories from test-meson-builds.sh +build +build-* -- 2.20.1