[Openmp-commits] [PATCH] D30784: Create a git ignore file for openmp runtime

Guansong Zhang via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Fri Mar 10 12:11:32 PST 2017


guansong updated this revision to Diff 91393.
guansong added a comment.

As suggested, mv the dir to the empty dir down below


https://reviews.llvm.org/D30784

Files:
  .gitignore


Index: .gitignore
===================================================================
--- /dev/null
+++ .gitignore
@@ -0,0 +1,43 @@
+#==============================================================================#
+# 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
+.*.sw?
+.sw?
+#OS X specific files.
+.DS_store
+
+#==============================================================================#
+# Explicit files to ignore (only matches one).
+#==============================================================================#
+# Various tag programs
+tags
+/TAGS
+/GPATH
+/GRTAGS
+/GSYMS
+/GTAGS
+.gitusers
+
+#==============================================================================#
+# Directories to ignore (do not add trailing '/'s, they skip symlinks).
+#==============================================================================#
+runtime/exports
+
+# Nested build directory
+/build
+


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D30784.91393.patch
Type: text/x-patch
Size: 1565 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20170310/ba97c370/attachment.bin>


More information about the Openmp-commits mailing list