From fb34a35c4eb11d30d9ba225c9daf84cf63f100fb Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Fri, 24 Feb 2017 23:09:30 +0000 Subject: [.gitignore] Update .gitignore to ignore a nested build directory Summary: A number of tools and common workflows include putting a build directory inside the source checkout under the folder "build". Adding this to .gitignore seems useful. As an example, the CMake Tools plugin for VSCode does this. Reviewers: chandlerc, echristo, zturner Reviewed By: zturner Subscribers: MatzeB, mehdi_amini, llvm-commits, jgosnell Differential Revision: https://reviews.llvm.org/D30346 llvm-svn: 296188 --- llvm/.gitignore | 3 +++ 1 file changed, 3 insertions(+) (limited to 'llvm/.gitignore') diff --git a/llvm/.gitignore b/llvm/.gitignore index 6a183cd..8a8ae6f 100644 --- a/llvm/.gitignore +++ b/llvm/.gitignore @@ -21,6 +21,9 @@ #OS X specific files. .DS_store +# Nested build directory +/build + #==============================================================================# # Explicit files to ignore (only matches one). #==============================================================================# -- cgit v1.1