From: Duncan P. N. Exon Smith Date: Mon, 29 Jun 2015 17:43:26 +0000 (+0000) Subject: Simplify .gitignore: projects/* => projects/*/ X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ae51f5bab147fffbb82756d4216a7ae2606118eb;p=platform%2Fupstream%2Fllvm.git Simplify .gitignore: projects/* => projects/*/ Avoid listing inclusions (like `!projects/LLVMBuild.txt`) for files directly underneath `projects/` in `.gitignore`. Instead, change the `projects/*` exclusion to the more specific `projects/*/`. llvm-svn: 240973 --- diff --git a/llvm/.gitignore b/llvm/.gitignore index 0705990..f3424d2 100644 --- a/llvm/.gitignore +++ b/llvm/.gitignore @@ -43,10 +43,7 @@ autoconf/autom4te.cache # Directories to ignore (do not add trailing '/'s, they skip symlinks). #==============================================================================# # External projects that are tracked independently. -projects/* -!projects/CMakeLists.txt -!projects/LLVMBuild.txt -!projects/Makefile +projects/*/ # Clang, which is tracked independently. tools/clang # LLDB, which is tracked independently.