[PATCH] D73253: [llvm] Fix file ignoring inside directories

Shoaib Meenai via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jan 27 17:01:56 PST 2020


This revision was automatically updated to reflect the committed changes.
Closed by commit rG3a5acdc96363: [llvm] Fix file ignoring inside directories (authored by smeenai).

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D73253/new/

https://reviews.llvm.org/D73253

Files:
  llvm/.gitignore


Index: llvm/.gitignore
===================================================================
--- llvm/.gitignore
+++ llvm/.gitignore
@@ -7,21 +7,8 @@
 #==============================================================================#
 
 #==============================================================================#
-# File extensions to be ignored anywhere in the tree.
+# Nested build directory.
 #==============================================================================#
-# Temp files created by most text editors.
-*~
-# Merge files created by git.
-*.orig
-# Byte compiled python modules.
-*.pyc
-# vim swap files
-.*.sw?
-.sw?
-#OS X specific files.
-.DS_store
-
-# Nested build directory
 /build
 
 #==============================================================================#
@@ -82,3 +69,19 @@
 #==============================================================================#
 bindings/go/llvm/llvm_config.go
 bindings/go/llvm/workdir
+
+#==============================================================================#
+# File extensions to be ignored anywhere in the tree.
+# Placed at the end to override any previous ! patterns.
+#==============================================================================#
+# Temp files created by most text editors.
+*~
+# Merge files created by git.
+*.orig
+# Byte compiled python modules.
+*.pyc
+# vim swap files
+.*.sw?
+.sw?
+#OS X specific files.
+.DS_store


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D73253.240735.patch
Type: text/x-patch
Size: 1423 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200128/36bc4541/attachment.bin>


More information about the llvm-commits mailing list