[PATCH] D65559: Change /build to /build* in top-level .gitignore
Douglas Yung via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Aug 1 01:17:24 PDT 2019
dyung created this revision.
dyung added a project: LLVM.
Internally our build scripts create build directories of the form build-<branch info> so it would be useful if the top level .gitignore file ignored build* instead of just build so that git would ignore them. We have had this privately for quite a while, but it seems like it could be something that might be useful upstream in case anyone else does something similar.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D65559
Files:
.gitignore
Index: .gitignore
===================================================================
--- .gitignore
+++ .gitignore
@@ -22,7 +22,7 @@
.DS_store
# Nested build directory
-/build
+/build*
#==============================================================================#
# Explicit files to ignore (only matches one).
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D65559.212748.patch
Type: text/x-patch
Size: 322 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190801/5f12a549/attachment.bin>
More information about the llvm-commits
mailing list