Users might not know about .git/info/exclude, which can be used to
ignore a directory locally (whereas changes to .gitignore would
themselves pollute git status). Explicitly note this in LLVM and
clang's getting started documentation.
Details
Details
- Reviewers
jyknight mehdi_amini
Diff Detail
Diff Detail
- Build Status
Buildable 27479 Build 27478: arc lint + arc unit
Event Timeline
clang/www/get_started.html | ||
---|---|---|
66 | I think this should be /build otherwise git will ignore files named build in every directory. |
clang/www/get_started.html | ||
---|---|---|
66 | You're right. I'll address this if we decide to go down this path vs. just adding to the .gitignore. |
Comment Actions
I actually like the D57400 approach more, it's much easier to keep a list of known top level projects as a whitelist. There are many names people could give to such a build directory (out or build or b) not to mention any other cruft one may have there. (ie. I build a libc as part of toolchain build).
I think this should be /build otherwise git will ignore files named build in every directory.