Skip to content

Commit

Permalink
Simplify .gitignore: projects/* => projects/*/
Browse files Browse the repository at this point in the history
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
  • Loading branch information
dexonsmith committed Jun 29, 2015
1 parent 4081538 commit 5d01714
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 5d01714

Please sign in to comment.