summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorDuncan P. N. Exon Smith <dexonsmith@apple.com>2015-06-29 17:43:26 +0000
committerDuncan P. N. Exon Smith <dexonsmith@apple.com>2015-06-29 17:43:26 +0000
commit5d01714788147ab46a7439e94dd3a6a8ad7b6b42 (patch)
treeb4dc049bc54ed23fec01a0b927a11f74f8b41c97 /.gitignore
parent4081538b2e3282b104c911b2fdf8ef65e47df122 (diff)
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/*/`. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240973 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore5
1 files changed, 1 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index 0705990f2bc..f3424d231e2 100644
--- a/.gitignore
+++ b/.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.