mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
00e7ff44ca
.gitignore should not ignore files that exist in the repository. The ignore of .cargo applies to the committed .cargo directory used in an example: $ git ls-files --exclude-standard --ignored src/test/run-make/thumb-none-qemu/example/.cargo/config Explicitly un-ignore that file.
61 lines
1.3 KiB
Plaintext
61 lines
1.3 KiB
Plaintext
# This file should only ignore things that are generated during a `x.py` build,
|
|
# generated by common IDEs, and optional files controlled by the user that
|
|
# affect the build (such as config.toml).
|
|
# In particular, things like `mir_dump` should not be listed here; they are only
|
|
# created during manual debugging and many people like to clean up instead of
|
|
# having git ignore such leftovers. You can use `.git/info/exclude` to
|
|
# configure your local ignore list.
|
|
# FIXME: This needs cleanup.
|
|
*~
|
|
.#*
|
|
.DS_Store
|
|
.cproject
|
|
.hg/
|
|
.hgignore
|
|
.idea
|
|
*.iml
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.project
|
|
.settings/
|
|
.valgrindrc
|
|
.vscode
|
|
.favorites.json
|
|
/Makefile
|
|
/build/
|
|
/config.toml
|
|
/dist/
|
|
/dl/
|
|
/doc/
|
|
/inst/
|
|
/llvm/
|
|
/mingw-build/
|
|
# Created by default with `src/ci/docker/run.sh`:
|
|
/obj/
|
|
/rustllvm/
|
|
/src/libcore/unicode/DerivedCoreProperties.txt
|
|
/src/libcore/unicode/DerivedNormalizationProps.txt
|
|
/src/libcore/unicode/PropList.txt
|
|
/src/libcore/unicode/ReadMe.txt
|
|
/src/libcore/unicode/Scripts.txt
|
|
/src/libcore/unicode/SpecialCasing.txt
|
|
/src/libcore/unicode/UnicodeData.txt
|
|
/src/libcore/unicode/downloaded
|
|
/target/
|
|
# Generated by compiletest for incremental:
|
|
/tmp/
|
|
tags
|
|
tags.*
|
|
TAGS
|
|
TAGS.*
|
|
\#*
|
|
\#*\#
|
|
config.mk
|
|
config.stamp
|
|
Session.vim
|
|
.cargo
|
|
!/src/test/run-make/thumb-none-qemu/example/.cargo
|
|
no_llvm_build
|
|
# Before adding new lines, see the comment at the top.
|