[Lldb-commits] [lldb] r233645 - Fix .gitignore to ignore symlinks.
Chaoren Lin
chaorenl at google.com
Mon Mar 30 17:03:00 PDT 2015
Author: chaoren
Date: Mon Mar 30 19:03:00 2015
New Revision: 233645
URL: http://llvm.org/viewvc/llvm-project?rev=233645&view=rev
Log:
Fix .gitignore to ignore symlinks.
Modified:
lldb/trunk/.gitignore
Modified: lldb/trunk/.gitignore
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/.gitignore?rev=233645&r1=233644&r2=233645&view=diff
==============================================================================
--- lldb/trunk/.gitignore (original)
+++ lldb/trunk/.gitignore Mon Mar 30 19:03:00 2015
@@ -35,6 +35,7 @@ xcshareddata/
test/20*
# We should ignore Xcode-style embedding of llvm/ at lldb root dir.
-/llvm/
-/DerivedData/
-/lldb.xcworkspace/xcshareddata/
+# Do not add trailing '/'s, they skip symlinks.
+/llvm
+/DerivedData
+/lldb.xcworkspace/xcshareddata
More information about the lldb-commits
mailing list