/.gitignore
gitignore | 171 lines | 98 code | 34 blank | 39 comment | 0 complexity | 998aeba2a7250fbfbbfd554e17100691 MD5 | raw file
1doc/icebreakeR-2pages.pdf 2doc/icebreakeR-intro-4pages.pdf 3doc/intro-ALL.pdf 4doc/itdt-2010-11-01-2pages.pdf 5doc/R-intro-2pages.pdf 6doc/intro-to-R.pdf 7 8################# 9## Eclipse 10################# 11 12*.pydevproject 13.project 14.metadata 15bin/** 16tmp/** 17tmp/**/* 18*.tmp 19*.bak 20*.swp 21*~.nib 22local.properties 23.classpath 24.settings/ 25.loadpath 26 27# External tool builders 28.externalToolBuilders/ 29 30# Locally stored "Eclipse launch configurations" 31*.launch 32 33# CDT-specific 34.cproject 35 36# PDT-specific 37.buildpath 38 39 40################# 41## Visual Studio 42################# 43 44## Ignore Visual Studio temporary files, build results, and 45## files generated by popular Visual Studio add-ons. 46 47# User-specific files 48*.suo 49*.user 50*.sln.docstates 51 52# Build results 53**/[Dd]ebug/ 54**/[Rr]elease/ 55*_i.c 56*_p.c 57*.ilk 58*.meta 59*.obj 60*.pch 61*.pdb 62*.pgc 63*.pgd 64*.rsp 65*.sbr 66*.tlb 67*.tli 68*.tlh 69*.tmp 70*.vspscc 71.builds 72**/*.dotCover 73 74## TODO: If you have NuGet Package Restore enabled, uncomment this 75#**/packages/ 76 77# Visual C++ cache files 78ipch/ 79*.aps 80*.ncb 81*.opensdf 82*.sdf 83 84# Visual Studio profiler 85*.psess 86*.vsp 87 88# ReSharper is a .NET coding add-in 89_ReSharper* 90 91# Installshield output folder 92[Ee]xpress 93 94# DocProject is a documentation generator add-in 95DocProject/buildhelp/ 96DocProject/Help/*.HxT 97DocProject/Help/*.HxC 98DocProject/Help/*.hhc 99DocProject/Help/*.hhk 100DocProject/Help/*.hhp 101DocProject/Help/Html2 102DocProject/Help/html 103 104# Click-Once directory 105publish 106 107# Others 108[Bb]in 109[Oo]bj 110sql 111TestResults 112*.Cache 113ClientBin 114stylecop.* 115~$* 116*.dbmdl 117Generated_Code #added for RIA/Silverlight projects 118 119# Backup & report files from converting an old project file to a newer 120# Visual Studio version. Backup files are not needed, because we have git ;-) 121_UpgradeReport_Files/ 122Backup*/ 123UpgradeLog*.XML 124 125 126 127############ 128## Windows 129############ 130 131# Windows image file caches 132Thumbs.db 133 134# Folder config file 135Desktop.ini 136 137 138############# 139## Python 140############# 141 142*.py[co] 143 144# Packages 145*.egg 146*.egg-info 147dist 148build 149eggs 150parts 151bin 152var 153sdist 154develop-eggs 155.installed.cfg 156 157# Installer logs 158pip-log.txt 159 160# Unit test / coverage reports 161.coverage 162.tox 163 164#Translations 165*.mo 166 167#Mr Developer 168.mr.developer.cfg 169 170# Mac crap 171.DS_Store