brintos

brintos / llvm-project-archived public Read only

0
0
Text · 2.4 KiB · 5b17e5c Raw
85 lines · plain
1#==============================================================================#2# This file specifies intentionally untracked files that git should ignore.3# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html4#5# This file is intentionally different from the output of `git svn show-ignore`,6# as most of those are useless.7#==============================================================================#8 9#==============================================================================#10# File extensions to be ignored anywhere in the tree.11#==============================================================================#12# Temp files created by most text editors.13*~14# Merge files created by git.15*.orig16# Reject files created by patch.17*.rej18# Byte compiled python modules.19*.pyc20# vim swap files21.*.sw?22.sw?23#OS X specific files.24.DS_store25 26# Ignore the user specified CMake presets in subproject directories.27/*/CMakeUserPresets.json28 29# Nested build directory30/build*31# ... but keep the brintos build driver (a tracked script, not a build dir)32!/build-brintos.sh33 34#==============================================================================#35# Explicit files to ignore (only matches one).36#==============================================================================#37# Various tag programs38/tags39/TAGS40/GPATH41/GRTAGS42/GSYMS43/GTAGS44/ID45.gitusers46autom4te.cache47cscope.files48cscope.out49autoconf/aclocal.m450autoconf/autom4te.cache51/compile_commands.json52# Visual Studio built-in CMake configuration53/CMakeSettings.json54# CLion project configuration55/.idea56/cmake-build*57# Coding assistants' stuff58/CLAUDE.md59.claude/60/GEMINI.md61.gemini/62AGENTS.md63.codex/64 65#==============================================================================#66# Directories to ignore (do not add trailing '/'s, they skip symlinks).67#==============================================================================#68# VS2017 and VSCode config files.69.vscode70.vs71#zed config files72.zed73# pythonenv for github Codespaces74pythonenv*75# clangd index. (".clangd" is a config file now, thus trailing slash)76.clangd/77.cache78# static analyzer regression testing project files79/clang/utils/analyzer/projects/*/CachedSource80/clang/utils/analyzer/projects/*/PatchedSource81/clang/utils/analyzer/projects/*/ScanBuildResults82/clang/utils/analyzer/projects/*/RefScanBuildResults83# automodapi puts generated documentation files here.84/lldb/docs/python_api/85