-
Notifications
You must be signed in to change notification settings - Fork 13.4k
gitignore: add comment explaining policy #63373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 3 commits
b9978e9
b2af718
58c231d
9cea446
fcb186d
4bde056
798767c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
# This file should only ignore things that are generatd during a build, | ||
# generated by common IDEs, and optional files controlled by the user | ||
# that affect the build (such as config.toml). | ||
# FIXME: This needs cleanup. | ||
*~ | ||
.#* | ||
.DS_Store | ||
|
@@ -14,8 +18,6 @@ __pycache__/ | |
.valgrindrc | ||
.vscode | ||
.favorites.json | ||
/*-*-*-*/ | ||
/*-*-*/ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was using this to have dirs git would ignore :( There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just edit your There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I keep forgetting why I don't use that more often. |
||
/Makefile | ||
/build | ||
/config.toml | ||
|
@@ -25,9 +27,6 @@ __pycache__/ | |
/inst/ | ||
/llvm/ | ||
/mingw-build/ | ||
/nd/ | ||
/obj/ | ||
alexcrichton marked this conversation as resolved.
Show resolved
Hide resolved
|
||
/rt/ | ||
/rustllvm/ | ||
/src/libcore/unicode/DerivedCoreProperties.txt | ||
/src/libcore/unicode/DerivedNormalizationProps.txt | ||
|
@@ -37,11 +36,6 @@ __pycache__/ | |
/src/libcore/unicode/SpecialCasing.txt | ||
/src/libcore/unicode/UnicodeData.txt | ||
/src/libcore/unicode/downloaded | ||
/stage[0-9]+/ | ||
/target | ||
target/ | ||
RalfJung marked this conversation as resolved.
Show resolved
Hide resolved
|
||
/test/ | ||
/tmp/ | ||
tags | ||
tags.* | ||
TAGS | ||
|
@@ -50,14 +44,8 @@ TAGS.* | |
\#*\# | ||
config.mk | ||
config.stamp | ||
keywords.md | ||
lexer.ml | ||
Session.vim | ||
src/etc/dl | ||
RalfJung marked this conversation as resolved.
Show resolved
Hide resolved
|
||
tmp.*.rs | ||
version.md | ||
version.ml | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This looks like it is from the OCaml bootstrap days. ;) |
||
version.texi | ||
.cargo | ||
!src/vendor/** | ||
/src/target/ | ||
RalfJung marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.