[llvm-commits] [dragonegg] r172036 - /dragonegg/trunk/.gitignore

NAKAMURA Takumi geek4civic at gmail.com
Wed Jan 9 18:12:13 PST 2013


Author: chapuni
Date: Wed Jan  9 20:12:12 2013
New Revision: 172036

URL: http://llvm.org/viewvc/llvm-project?rev=172036&view=rev
Log:
Introduce .gitignore

Added:
    dragonegg/trunk/.gitignore

Added: dragonegg/trunk/.gitignore
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/.gitignore?rev=172036&view=auto
==============================================================================
--- dragonegg/trunk/.gitignore (added)
+++ dragonegg/trunk/.gitignore Wed Jan  9 20:12:12 2013
@@ -0,0 +1,38 @@
+#==============================================================================#
+# 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?
+# In-tree build files
+*.d
+*.o
+
+#==============================================================================#
+# Explicit files to ignore (only matches one).
+#==============================================================================#
+/.gitusers
+
+# Generated files
+/TargetInfo
+/dragonegg.so
+
+#==============================================================================#
+# Directories to ignore (do not add trailing '/'s, they skip symlinks).
+#==============================================================================#
+# Lit outputs
+/test/Output





More information about the llvm-commits mailing list