/ .gitignore
.gitignore
1 # i2pd 2 *.o 3 router.info 4 router.keys 5 i2p 6 netDb 7 /i2pd 8 /libi2pd.a 9 /libi2pdclient.a 10 /libi2pdlang.a 11 /libi2pd.so 12 /libi2pdclient.so 13 /libi2pdlang.so 14 /libi2pd.dll 15 /libi2pdclient.dll 16 /libi2pdlang.dll 17 *.exe 18 19 20 # Autotools 21 autom4te.cache 22 .deps 23 stamp-h1 24 #Makefile 25 config.h 26 config.h.in~ 27 config.log 28 config.status 29 config.sub 30 31 ################# 32 ## Eclipse 33 ################# 34 35 *.pydevproject 36 .project 37 .metadata 38 bin/ 39 tmp/ 40 *.tmp 41 *.bak 42 *.swp 43 *~.nib 44 local.properties 45 .classpath 46 .settings/ 47 .loadpath 48 49 # External tool builders 50 .externalToolBuilders/ 51 52 # Locally stored "Eclipse launch configurations" 53 *.launch 54 55 # CDT-specific 56 .cproject 57 58 # PDT-specific 59 .buildpath 60 61 62 ################# 63 ## Visual Studio 64 ################# 65 66 ## Ignore Visual Studio temporary files, build results, and 67 ## files generated by popular Visual Studio add-ons. 68 69 # User-specific files 70 *.suo 71 *.user 72 *.sln.docstates 73 74 # Build results 75 76 [Dd]ebug/ 77 [Rr]elease/ 78 x64/ 79 [Bb]in/ 80 [Oo]bj/ 81 82 # MSTest test Results 83 [Tt]est[Rr]esult*/ 84 [Bb]uild[Ll]og.* 85 86 *_i.c 87 *_p.c 88 *.ilk 89 *.meta 90 *.obj 91 *.pch 92 *.pdb 93 *.pgc 94 *.pgd 95 *.rsp 96 *.sbr 97 *.tlb 98 *.tli 99 *.tlh 100 *.tmp 101 *.tmp_proj 102 *.log 103 *.vspscc 104 *.vssscc 105 .builds 106 *.pidb 107 *.log 108 *.scc 109 110 # Visual C++ cache files 111 ipch/ 112 *.aps 113 *.ncb 114 *.opensdf 115 *.sdf 116 *.cachefile 117 118 # Visual Studio profiler 119 *.psess 120 *.vsp 121 *.vspx 122 123 # Guidance Automation Toolkit 124 *.gpState 125 126 # ReSharper is a .NET coding add-in 127 _ReSharper*/ 128 *.[Rr]e[Ss]harper 129 130 # TeamCity is a build add-in 131 _TeamCity* 132 133 # DotCover is a Code Coverage Tool 134 *.dotCover 135 136 # NCrunch 137 *.ncrunch* 138 .*crunch*.local.xml 139 140 # Installshield output folder 141 [Ee]xpress/ 142 143 # DocProject is a documentation generator add-in 144 DocProject/buildhelp/ 145 DocProject/Help/*.HxT 146 DocProject/Help/*.HxC 147 DocProject/Help/*.hhc 148 DocProject/Help/*.hhk 149 DocProject/Help/*.hhp 150 DocProject/Help/Html2 151 DocProject/Help/html 152 153 # Click-Once directory 154 publish/ 155 156 # Publish Web Output 157 *.Publish.xml 158 *.pubxml 159 160 # NuGet Packages Directory 161 ## TODO: If you have NuGet Package Restore enabled, uncomment the next line 162 #packages/ 163 164 # Windows Azure Build Output 165 csx 166 *.build.csdef 167 168 # Windows Store app package directory 169 AppPackages/ 170 171 # Others 172 sql/ 173 *.Cache 174 ClientBin/ 175 [Ss]tyle[Cc]op.* 176 ~$* 177 *~ 178 *.dbmdl 179 *.[Pp]ublish.xml 180 *.pfx 181 *.publishsettings 182 183 # RIA/Silverlight projects 184 Generated_Code/ 185 186 # Backup & report files from converting an old project file to a newer 187 # Visual Studio version. Backup files are not needed, because we have git ;-) 188 _UpgradeReport_Files/ 189 Backup*/ 190 UpgradeLog*.XML 191 UpgradeLog*.htm 192 193 # SQL Server files 194 App_Data/*.mdf 195 App_Data/*.ldf 196 197 ############# 198 ## Windows detritus 199 ############# 200 201 # Windows image file caches 202 Thumbs.db 203 ehthumbs.db 204 205 # Folder config file 206 Desktop.ini 207 208 # Recycle Bin used on file shares 209 $RECYCLE.BIN/ 210 211 # Mac crap 212 .DS_Store 213 214 215 ############# 216 ## Python 217 ############# 218 219 *.py[co] 220 221 # Packages 222 *.egg 223 *.egg-info 224 dist/ 225 eggs/ 226 parts/ 227 var/ 228 sdist/ 229 develop-eggs/ 230 .installed.cfg 231 232 # Installer logs 233 pip-log.txt 234 235 # Unit test / coverage reports 236 .coverage 237 .tox 238 239 #Translations 240 *.mo 241 242 #Mr Developer 243 .mr.developer.cfg 244 245 # Sphinx 246 docs/_build 247 /androidIdea/ 248 249 # Doxygen 250 docs/generated 251 252 # emacs files 253 *~ 254 *\#* 255 256 # gdb files 257 .gdb_history 258 259 # cmake makefile 260 build/Makefile 261 262 # debian stuff 263 debian/i2pd.1.gz 264 .pc/ 265 266 # qt 267 268 qt/i2pd_qt/*.autosave 269 qt/i2pd_qt/*.ui.bk* 270 qt/i2pd_qt/*.ui_* 271 272 #unknown android stuff 273 android/libs/ 274 275 #various logs 276 *LOGS/ 277 278 qt/build-*.sh* 279