X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=.gitignore;h=b7e8e8fa15752d6761bfe49fcd9ad287c6830b78;hb=dc78ee0c80aac7d0003419590cf14d7c8c8e9af3;hp=12e779fe7c7d7b8bb050611e643a6355776ed518;hpb=55e077970891c33122ed34f7f8a061709ba01dc3;p=rust.git diff --git a/.gitignore b/.gitignore index 12e779fe7c7..b7e8e8fa157 100644 --- a/.gitignore +++ b/.gitignore @@ -1,17 +1,78 @@ -target -**/*.rs.bk -*.rlib -*.o -perf.data -perf.data.old -*.events -*.string* -/y.bin -/build -/build_sysroot/sysroot_src -/build_sysroot/compiler-builtins -/build_sysroot/rustc_version -/rust -/rand -/regex -/simple-raytracer +# 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. + +## File system +.DS_Store +desktop.ini + +## Editor +*.swp +*.swo +Session.vim +.cproject +.idea +*.iml +.vscode +.project +.favorites.json +.settings/ + +## Tool +.valgrindrc +.cargo +# Included because it is part of the test case +!/src/test/run-make/thumb-none-qemu/example/.cargo + +## Configuration +/config.toml +/Makefile +config.mk +config.stamp +no_llvm_build + +## Build +/dl/ +/doc/ +/inst/ +/llvm/ +/mingw-build/ +/build/ +/dist/ +/unicode-downloads +/target +/src/tools/x/target +# Generated by compiletest for incremental +/tmp/ +# Created by default with `src/ci/docker/run.sh` +/obj/ + +## Temporary files +*~ +\#* +\#*\# +.#* + +## Tags +tags +tags.* +TAGS +TAGS.* + +## Python +__pycache__/ +*.py[cod] +*$py.class + +## Node +**node_modules +**package-lock.json + +## Rustdoc GUI tests +src/test/rustdoc-gui/src/**.lock + +# Before adding new lines, see the comment at the top.