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

Phabricator via Phabricator via Openmp-commits openmp-commits at lists.llvm.org
Sat Mar 11 05:17:21 PST 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL297562: Create a git ignore file for openmp runtime. (authored by achurbanov).

Changed prior to commit:
  https://reviews.llvm.org/D30784?vs=91393&id=91467#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D30784

Files:
  openmp/trunk/.gitignore


Index: openmp/trunk/.gitignore
===================================================================
--- openmp/trunk/.gitignore
+++ openmp/trunk/.gitignore
@@ -0,0 +1,42 @@
+#==============================================================================#
+# 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.91467.patch
Type: text/x-patch
Size: 1603 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20170311/cffa3e21/attachment.bin>


More information about the Openmp-commits mailing list