[cfe-commits] [PATCH] Adding a .gitignore to tools-extra

Edwin Vane edwin.vane at intel.com
Fri Jan 11 11:35:33 PST 2013


Hi klimek,

http://llvm-reviews.chandlerc.com/D289

Files:
  .gitignore

Index: .gitignore
===================================================================
--- /dev/null
+++ .gitignore
@@ -0,0 +1,31 @@
+#==============================================================================#
+# This file specifies intentionally untracked files that git should ignore.
+# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
+#
+# This file is intentionally different from the output of `git svn show-ignore`,
+# as most of those are useless.
+#==============================================================================#
+
+#==============================================================================#
+# File extensions to be ignored anywhere in the tree.
+#==============================================================================#
+# Temp files created by most text editors.
+*~
+# Merge files created by git.
+*.orig
+# Byte compiled python modules.
+*.pyc
+# vim swap files
+.*.swp
+.sw?
+
+#==============================================================================#
+# Explicit files to ignore (only matches one).
+#==============================================================================#
+cscope.files
+cscope.out
+.clang_complete
+
+#==============================================================================#
+# Directories to ignore (do not add trailing '/'s, they skip symlinks).
+#==============================================================================#
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D289.1.patch
Type: text/x-patch
Size: 1438 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20130111/831f6c22/attachment.bin>


More information about the cfe-commits mailing list