OLD | NEW |
(Empty) | |
| 1 #==============================================================================# |
| 2 # Inspired by LLVM's .gitignore |
| 3 #==============================================================================# |
| 4 |
| 5 #==============================================================================# |
| 6 # File extensions to be ignored anywhere in the tree. |
| 7 #==============================================================================# |
| 8 # Temp files created by most text editors. |
| 9 *~ |
| 10 # Merge files created by git. |
| 11 *.orig |
| 12 # Byte compiled python modules. |
| 13 *.pyc |
| 14 # vim swap files |
| 15 .*.swp |
| 16 .sw? |
| 17 *.o |
| 18 |
| 19 #==============================================================================# |
| 20 # Explicit files to ignore (only matches one). |
| 21 #==============================================================================# |
| 22 .gitusers |
| 23 autom4te.cache |
| 24 cscope.files |
| 25 cscope.out |
| 26 autoconf/aclocal.m4 |
| 27 autoconf/autom4te.cache |
| 28 compile_commands.json |
| 29 tags |
| 30 subzerotest |
| 31 llvm2ice |
OLD | NEW |