Eric Christopher | 6f75a8f | 2019-04-09 00:52:49 +0000 | [diff] [blame] | 1 | #==============================================================================# |
| 2 | # This file specifies intentionally untracked files that git should ignore. |
| 3 | # See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html |
| 4 | # |
| 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 | *.orig |
| 16 | # Byte compiled python modules. |
| 17 | *.pyc |
| 18 | # vim swap files |
| 19 | .*.sw? |
| 20 | .sw? |
| 21 | #OS X specific files. |
| 22 | .DS_store |
| 23 | |
Balazs Benics | def99ad | 2021-01-22 12:45:29 +0100 | [diff] [blame] | 24 | # Ignore the user specified CMake presets in subproject directories. |
| 25 | /*/CMakeUserPresets.json |
| 26 | |
Eric Christopher | 6f75a8f | 2019-04-09 00:52:49 +0000 | [diff] [blame] | 27 | # Nested build directory |
Douglas Yung | 087a574 | 2019-08-02 02:14:08 +0000 | [diff] [blame] | 28 | /build* |
Eric Christopher | 6f75a8f | 2019-04-09 00:52:49 +0000 | [diff] [blame] | 29 | |
| 30 | #==============================================================================# |
| 31 | # Explicit files to ignore (only matches one). |
| 32 | #==============================================================================# |
| 33 | # Various tag programs |
| 34 | /tags |
| 35 | /TAGS |
| 36 | /GPATH |
| 37 | /GRTAGS |
| 38 | /GSYMS |
| 39 | /GTAGS |
Kazushi (Jam) Marukawa | ca77aa0 | 2020-06-12 16:05:08 -0400 | [diff] [blame] | 40 | /ID |
Eric Christopher | 6f75a8f | 2019-04-09 00:52:49 +0000 | [diff] [blame] | 41 | .gitusers |
| 42 | autom4te.cache |
| 43 | cscope.files |
| 44 | cscope.out |
| 45 | autoconf/aclocal.m4 |
| 46 | autoconf/autom4te.cache |
| 47 | /compile_commands.json |
| 48 | # Visual Studio built-in CMake configuration |
| 49 | /CMakeSettings.json |
| 50 | # CLion project configuration |
| 51 | /.idea |
| 52 | |
| 53 | #==============================================================================# |
| 54 | # Directories to ignore (do not add trailing '/'s, they skip symlinks). |
| 55 | #==============================================================================# |
| 56 | # VS2017 and VSCode config files. |
| 57 | .vscode |
| 58 | .vs |
Puyan Lotfi | 0ac8133 | 2020-09-03 22:42:27 -0400 | [diff] [blame] | 59 | # pythonenv for github Codespaces |
| 60 | pythonenv* |
Sam McCall | 9b55bc4d | 2020-07-02 23:51:26 +0200 | [diff] [blame] | 61 | # clangd index. (".clangd" is a config file now, thus trailing slash) |
| 62 | .clangd/ |
| 63 | .cache |
Valeriy Savchenko | 8dc2802 | 2020-06-04 18:40:39 +0300 | [diff] [blame] | 64 | # static analyzer regression testing project files |
| 65 | /clang/utils/analyzer/projects/*/CachedSource |
| 66 | /clang/utils/analyzer/projects/*/PatchedSource |
| 67 | /clang/utils/analyzer/projects/*/ScanBuildResults |
Sam McCall | 9b55bc4d | 2020-07-02 23:51:26 +0200 | [diff] [blame] | 68 | /clang/utils/analyzer/projects/*/RefScanBuildResults |
Raphael Isemann | e7bc6c5 | 2021-01-15 13:24:24 +0100 | [diff] [blame] | 69 | # automodapi puts generated documentation files here. |
| 70 | /lldb/docs/python_api/ |