|
| 1 | +#==============================================================================# |
| 2 | +# This file specifies intentionally untracked files that git should ignore. |
| 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 | +# Java bytecode |
| 13 | +*.class |
| 14 | +# Byte compiled python modules. |
| 15 | +*.pyc |
| 16 | +# vim swap files |
| 17 | +.*.sw? |
| 18 | +.sw? |
| 19 | +# vscode settings directory |
| 20 | +.vscode |
| 21 | +#OS X specific files. |
| 22 | +.DS_store |
| 23 | +# Core files |
| 24 | +#core |
| 25 | + |
| 26 | +#==============================================================================# |
| 27 | +# Explicit files to ignore (only matches one). |
| 28 | +#==============================================================================# |
| 29 | +# Various tag programs |
| 30 | +/tags |
| 31 | +/TAGS |
| 32 | +/GPATH |
| 33 | +/GRTAGS |
| 34 | +/GSYMS |
| 35 | +/GTAGS |
| 36 | +.gitusers |
| 37 | +autom4te.cache |
| 38 | +cscope.files |
| 39 | +cscope.out |
| 40 | +autoconf/aclocal.m4 |
| 41 | +autoconf/autom4te.cache |
| 42 | +/compile_commands.json |
| 43 | + |
| 44 | +#==============================================================================# |
| 45 | +# Build artifacts |
| 46 | +#==============================================================================# |
| 47 | +#m4/ |
| 48 | +build/ |
| 49 | +#*.m4 |
| 50 | +*.o |
| 51 | +*.lo |
| 52 | +*.la |
| 53 | +*~ |
| 54 | +*.pdf |
| 55 | +*.swp |
| 56 | +a.out |
| 57 | + |
| 58 | +#==============================================================================# |
| 59 | +# Kate Swap Files |
| 60 | +#==============================================================================# |
| 61 | +*.kate-swp |
| 62 | +.#kate-* |
| 63 | + |
| 64 | +#==============================================================================# |
| 65 | +# Backup artifacts |
| 66 | +#==============================================================================# |
| 67 | +~* |
| 68 | +*~ |
| 69 | +tmp/ |
| 70 | + |
| 71 | +#==============================================================================# |
| 72 | +# KDevelop files |
| 73 | +#==============================================================================# |
| 74 | +.kdev4 |
| 75 | +*.kdev4 |
| 76 | +.dirstamp |
| 77 | +.deps |
| 78 | +.libs |
| 79 | + |
| 80 | +#==============================================================================# |
| 81 | +# Eclipse files |
| 82 | +#==============================================================================# |
| 83 | +.wtpmodules |
| 84 | +.classpath |
| 85 | +.project |
| 86 | +.cproject |
| 87 | +.pydevproject |
| 88 | +.settings |
| 89 | +.autotools |
| 90 | + |
| 91 | +/Debug/ |
| 92 | +/misc/ |
| 93 | + |
| 94 | +#==============================================================================# |
| 95 | +# Intellij files |
| 96 | +#==============================================================================# |
| 97 | +.idea |
| 98 | +*.iml |
| 99 | + |
| 100 | +#==============================================================================# |
| 101 | +# Code Coverage files |
| 102 | +#==============================================================================# |
| 103 | +*.gcno |
| 104 | +*.gcda |
| 105 | + |
| 106 | + |
| 107 | +#==============================================================================# |
| 108 | +# Eclipse |
| 109 | +#==============================================================================# |
| 110 | + |
| 111 | +.metadata |
| 112 | +bin/ |
| 113 | +tmp/ |
| 114 | +*.tmp |
| 115 | +*.bak |
| 116 | +*.swp |
| 117 | +*~.nib |
| 118 | +local.properties |
| 119 | +.settings/ |
| 120 | +.loadpath |
| 121 | +.recommenders |
| 122 | + |
| 123 | +# Eclipse Core |
| 124 | +.project |
| 125 | + |
| 126 | +# External tool builders |
| 127 | +.externalToolBuilders/ |
| 128 | + |
| 129 | +# Locally stored "Eclipse launch configurations" |
| 130 | +*.launch |
| 131 | + |
| 132 | +# PyDev specific (Python IDE for Eclipse) |
| 133 | +*.pydevproject |
| 134 | + |
| 135 | +# CDT-specific (C/C++ Development Tooling) |
| 136 | +.cproject |
| 137 | + |
| 138 | +# JDT-specific (Eclipse Java Development Tools) |
| 139 | +.classpath |
| 140 | + |
| 141 | +# Java annotation processor (APT) |
| 142 | +.factorypath |
| 143 | + |
| 144 | +# PDT-specific (PHP Development Tools) |
| 145 | +.buildpath |
| 146 | + |
| 147 | +# sbteclipse plugin |
| 148 | +.target |
| 149 | + |
| 150 | +# Tern plugin |
| 151 | +.tern-project |
| 152 | + |
| 153 | +# TeXlipse plugin |
| 154 | +.texlipse |
| 155 | + |
| 156 | +# STS (Spring Tool Suite) |
| 157 | +.springBeans |
| 158 | + |
| 159 | +# Code Recommenders |
| 160 | +.recommenders/ |
| 161 | +io_file |
| 162 | + |
| 163 | +## General |
| 164 | + |
| 165 | +# Compiled Object files |
| 166 | +*.slo |
| 167 | +*.lo |
| 168 | +*.o |
| 169 | +*.cuo |
| 170 | + |
| 171 | +# Compiled Dynamic libraries |
| 172 | +*.so |
| 173 | +*.dylib |
| 174 | + |
| 175 | +# Compiled Static libraries |
| 176 | +*.lai |
| 177 | +*.la |
| 178 | +*.a |
| 179 | + |
| 180 | +# Compiled python |
| 181 | +*.pyc |
| 182 | + |
| 183 | +# Compiled MATLAB |
| 184 | +*.mex* |
| 185 | + |
| 186 | +# IPython notebook checkpoints |
| 187 | +.ipynb_checkpoints |
| 188 | + |
| 189 | +# Editor temporaries |
| 190 | +*.swp |
| 191 | +*~ |
| 192 | + |
| 193 | +# Sublime Text settings |
| 194 | +*.sublime-workspace |
| 195 | +*.sublime-project |
| 196 | + |
| 197 | +# Eclipse Project settings |
| 198 | +*.*project |
| 199 | +.settings |
| 200 | + |
| 201 | +# Visual Studio |
| 202 | +.vs |
| 203 | + |
| 204 | +# QtCreator files |
| 205 | +*.user |
| 206 | + |
| 207 | +# PyCharm files |
| 208 | +.idea |
| 209 | + |
| 210 | +# OSX dir files |
| 211 | +.DS_Store |
| 212 | + |
| 213 | +# User's build configuration |
| 214 | +Makefile.config |
| 215 | + |
| 216 | +# build, distribute, and bins (+ python proto bindings) |
| 217 | +build |
| 218 | +.build_debug/* |
| 219 | +.build_release/* |
| 220 | +distribute/* |
| 221 | +*.testbin |
| 222 | +*.bin |
| 223 | +cmake_build |
| 224 | +.cmake_build |
| 225 | +cmake-build-* |
| 226 | + |
| 227 | +# Generated documentation |
| 228 | +apidoc/doc |
| 229 | +docs/_site |
| 230 | +docs/gathered |
| 231 | +_site |
| 232 | +doxygen |
| 233 | +docs/dev |
| 234 | + |
| 235 | +# Config files |
| 236 | +*.conf |
| 237 | + |
| 238 | +# Vagrant |
| 239 | +.vagrant |
| 240 | + |
| 241 | +# Clangd cache index |
| 242 | +.cache |
| 243 | + |
| 244 | +# Submission zip files |
| 245 | +*.zip |
0 commit comments