Evgeniy Stepanov | b03ef6a | 2015-07-16 00:32:26 +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 |
Evgeniy Stepanov | b03ef6a | 2015-07-16 00:32:26 +0000 | [diff] [blame] | 4 | #==============================================================================# |
| 5 | |
| 6 | #==============================================================================# |
| 7 | # File extensions to be ignored anywhere in the tree. |
| 8 | #==============================================================================# |
| 9 | # Temp files created by most text editors. |
| 10 | *~ |
| 11 | # Merge files created by git. |
| 12 | *.orig |
| 13 | # Byte compiled python modules. |
| 14 | *.pyc |
| 15 | # vim swap files |
| 16 | .*.sw? |
| 17 | .sw? |
| 18 | |
| 19 | #==============================================================================# |
| 20 | # Explicit files to ignore (only matches one). |
| 21 | #==============================================================================# |
| 22 | cscope.files |
| 23 | cscope.out |
George Karpenkov | 2b39006 | 2018-08-22 23:23:17 +0000 | [diff] [blame] | 24 | /tags |
Evgeniy Stepanov | b03ef6a | 2015-07-16 00:32:26 +0000 | [diff] [blame] | 25 | |
| 26 | #==============================================================================# |
| 27 | # Directories to ignore (do not add trailing '/'s, they skip symlinks). |
| 28 | #==============================================================================# |
Evgeniy Stepanov | b03ef6a | 2015-07-16 00:32:26 +0000 | [diff] [blame] | 29 | # Sphinx build products |
| 30 | docs/_build |
| 31 | docs/analyzer/_build |
Gor Nishanov | df4e9ba | 2018-12-03 22:51:07 +0000 | [diff] [blame] | 32 | |
| 33 | # VS2017 and VSCode config files. |
| 34 | .vscode |
| 35 | .vs |
| 36 | |