From 2b5a86a60eb09dcb701d3917a305d046a8e88b08 Mon Sep 17 00:00:00 2001 From: Mateusz Loskot Date: Mon, 4 Feb 2013 10:48:19 +0000 Subject: [PATCH] Added _build* pattern to .gitignore. There is build in top-level directory of the source tree, so we can't ignore build globally. To make in-source build subfolders usable without annoying Git prompts about unstaged changes, we can use _build and its variants (_build-{branch}-{build type}, etc.). It will be ignored. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d9eb94ac7..11acc5191 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ -tmp +_build* src/build +tmp *.swp *.kate-swp