[PATCH] D60430: Add a reduced copy of the llvm .gitignore as a start for the monorepo .gitignore

Eric Christopher via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 8 16:59:52 PDT 2019


echristo created this revision.
echristo added a reviewer: dlj.
Herald added subscribers: llvm-commits, mcrosier.
Herald added a project: LLVM.

What it says on the tin. I just copied it over and removed things that were handled in other places that we might not want at the top level. Happy to add or remove things, just a start.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D60430

Files:
  .gitignore


Index: .gitignore
===================================================================
--- /dev/null
+++ .gitignore
@@ -0,0 +1,56 @@
+#==============================================================================#
+# 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
+
+# Nested build directory
+/build
+
+#==============================================================================#
+# Explicit files to ignore (only matches one).
+#==============================================================================#
+# Various tag programs
+/tags
+/TAGS
+/GPATH
+/GRTAGS
+/GSYMS
+/GTAGS
+.gitusers
+autom4te.cache
+cscope.files
+cscope.out
+autoconf/aclocal.m4
+autoconf/autom4te.cache
+/compile_commands.json
+# Visual Studio built-in CMake configuration
+/CMakeSettings.json
+# CLion project configuration
+/.idea
+
+#==============================================================================#
+# Directories to ignore (do not add trailing '/'s, they skip symlinks).
+#==============================================================================#
+# VS2017 and VSCode config files.
+.vscode
+.vs
+# clangd index
+.clangd
\ No newline at end of file


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60430.194224.patch
Type: text/x-patch
Size: 1867 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190408/52631f79/attachment.bin>


More information about the llvm-commits mailing list