|
| 1 | +# This is a sample .gitignore file that's useful for C++ projects. |
| 2 | +# |
| 3 | +# Add this file to the root of your git repo. Name it .gitignore |
| 4 | +# |
| 5 | +# A .gitignore file will tell git which files and directories to ignore and |
| 6 | +# not add to version control. |
| 7 | + |
| 8 | +# Executables and debug files |
| 9 | +main |
| 10 | +*.exe |
| 11 | +*.dSYM |
| 12 | +*.stackdump |
| 13 | + |
| 14 | +# Visual debugger configurations |
| 15 | +.vscode/ |
| 16 | +.vs/ |
| 17 | +*.xcodeproj/ |
| 18 | + |
| 19 | +# Output files |
| 20 | +*.log |
| 21 | +*.out |
| 22 | + |
1 | 23 | # Compiled Object files |
2 | 24 | *.slo |
3 | 25 | *.lo |
|
27 | 49 | *.exe |
28 | 50 | *.out |
29 | 51 | *.app |
| 52 | + |
| 53 | +# Prerequisites |
30 | 54 | *.d |
31 | | -*.out.txt |
32 | | -.vscode |
33 | | -.DS_Store |
| 55 | + |
| 56 | +# macOS system files |
| 57 | +*.DS_Store |
| 58 | + |
| 59 | +# Google Drive |
| 60 | +Icon |
| 61 | + |
| 62 | +# Files created by text editors |
| 63 | +*~ |
| 64 | +*.lock |
| 65 | +*.swp |
| 66 | +# Locking Ruby library version creates a ton of headaches for local preview |
| 67 | +# and GitHub pages deploy |
| 68 | +Gemfile.lock |
| 69 | + |
| 70 | + |
| 71 | +######################################## |
| 72 | +## Xcode |
| 73 | +## |
| 74 | +## https://github.com/github/gitignore/blob/master/Global/Xcode.gitignore |
| 75 | + |
| 76 | +# User settings |
| 77 | +xcuserdata/ |
| 78 | +*.idea/ |
| 79 | + |
| 80 | +# compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) |
| 81 | +*.xcscmblueprint |
| 82 | +*.xccheckout |
| 83 | + |
| 84 | +# compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) |
| 85 | +build/ |
| 86 | +DerivedData/ |
| 87 | +*.moved-aside |
| 88 | +*.pbxuser |
| 89 | +!default.pbxuser |
| 90 | +*.mode1v3 |
| 91 | +!default.mode1v3 |
| 92 | +*.mode2v3 |
| 93 | +!default.mode2v3 |
| 94 | +*.perspectivev3 |
| 95 | +!default.perspectivev3 |
| 96 | +*.xcworkspace |
| 97 | +!default.xcworkspace |
| 98 | + |
| 99 | +######################################## |
| 100 | +## Ignore Visual Studio temporary files, build results, and |
| 101 | +## files generated by popular Visual Studio add-ons. |
| 102 | +## |
| 103 | +## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore |
| 104 | + |
| 105 | +# User-specific files |
| 106 | +*.suo |
| 107 | +*.user |
| 108 | +*.userosscache |
| 109 | +*.sln.docstates |
| 110 | + |
| 111 | +# User-specific files (MonoDevelop/Xamarin Studio) |
| 112 | +*.userprefs |
| 113 | + |
| 114 | +# Build results |
| 115 | +[Dd]ebug/ |
| 116 | +[Dd]ebugPublic/ |
| 117 | +[Rr]elease/ |
| 118 | +[Rr]eleases/ |
| 119 | +x64/ |
| 120 | +x86/ |
| 121 | +bld/ |
| 122 | +[Bb]in/ |
| 123 | +[Oo]bj/ |
| 124 | +[Ll]og/ |
| 125 | + |
| 126 | +# Visual Studio 2015 cache/options directory |
| 127 | +.vs/ |
| 128 | +# Uncomment if you have tasks that create the project's static files in wwwroot |
| 129 | +#wwwroot/ |
| 130 | + |
| 131 | +# MSTest test Results |
| 132 | +[Tt]est[Rr]esult*/ |
| 133 | +[Bb]uild[Ll]og.* |
| 134 | + |
| 135 | +# NUNIT |
| 136 | +*.VisualState.xml |
| 137 | +TestResult.xml |
| 138 | + |
| 139 | +# Build Results of an ATL Project |
| 140 | +[Dd]ebugPS/ |
| 141 | +[Rr]eleasePS/ |
| 142 | +dlldata.c |
| 143 | + |
| 144 | +# Benchmark Results |
| 145 | +BenchmarkDotNet.Artifacts/ |
| 146 | + |
| 147 | +# .NET Core |
| 148 | +project.lock.json |
| 149 | +project.fragment.lock.json |
| 150 | +artifacts/ |
| 151 | +**/Properties/launchSettings.json |
| 152 | + |
| 153 | +*_i.c |
| 154 | +*_p.c |
| 155 | +*_i.h |
| 156 | +*.ilk |
| 157 | +*.meta |
| 158 | +*.obj |
| 159 | +*.pch |
| 160 | +*.pdb |
| 161 | +*.pgc |
| 162 | +*.pgd |
| 163 | +*.rsp |
| 164 | +*.sbr |
| 165 | +*.tlb |
| 166 | +*.tli |
| 167 | +*.tlh |
| 168 | +*.tmp |
| 169 | +*.tmp_proj |
| 170 | +*.log |
| 171 | +*.vspscc |
| 172 | +*.vssscc |
| 173 | +.builds |
| 174 | +*.pidb |
| 175 | +*.svclog |
| 176 | +*.scc |
| 177 | + |
| 178 | +# Chutzpah Test files |
| 179 | +_Chutzpah* |
| 180 | + |
| 181 | +# Visual C++ cache files |
| 182 | +ipch/ |
| 183 | +*.aps |
| 184 | +*.ncb |
| 185 | +*.opendb |
| 186 | +*.opensdf |
| 187 | +*.sdf |
| 188 | +*.cachefile |
| 189 | +*.VC.db |
| 190 | +*.VC.VC.opendb |
| 191 | + |
| 192 | +# Visual Studio profiler |
| 193 | +*.psess |
| 194 | +*.vsp |
| 195 | +*.vspx |
| 196 | +*.sap |
| 197 | + |
| 198 | +# Visual Studio Trace Files |
| 199 | +*.e2e |
| 200 | + |
| 201 | +# TFS 2012 Local Workspace |
| 202 | +$tf/ |
| 203 | + |
| 204 | +# Guidance Automation Toolkit |
| 205 | +*.gpState |
| 206 | + |
| 207 | +# ReSharper is a .NET coding add-in |
| 208 | +_ReSharper*/ |
| 209 | +*.[Rr]e[Ss]harper |
| 210 | +*.DotSettings.user |
| 211 | + |
| 212 | +# JustCode is a .NET coding add-in |
| 213 | +.JustCode |
| 214 | + |
| 215 | +# TeamCity is a build add-in |
| 216 | +_TeamCity* |
| 217 | + |
| 218 | +# DotCover is a Code Coverage Tool |
| 219 | +*.dotCover |
| 220 | + |
| 221 | +# AxoCover is a Code Coverage Tool |
| 222 | +.axoCover/* |
| 223 | +!.axoCover/settings.json |
| 224 | + |
| 225 | +# Visual Studio code coverage results |
| 226 | +*.coverage |
| 227 | +*.coveragexml |
| 228 | + |
| 229 | +# NCrunch |
| 230 | +_NCrunch_* |
| 231 | +.*crunch*.local.xml |
| 232 | +nCrunchTemp_* |
| 233 | + |
| 234 | +# MightyMoose |
| 235 | +*.mm.* |
| 236 | +AutoTest.Net/ |
| 237 | + |
| 238 | +# Web workbench (sass) |
| 239 | +.sass-cache/ |
| 240 | + |
| 241 | +# Installshield output folder |
| 242 | +[Ee]xpress/ |
| 243 | + |
| 244 | +# DocProject is a documentation generator add-in |
| 245 | +DocProject/buildhelp/ |
| 246 | +DocProject/Help/*.HxT |
| 247 | +DocProject/Help/*.HxC |
| 248 | +DocProject/Help/*.hhc |
| 249 | +DocProject/Help/*.hhk |
| 250 | +DocProject/Help/*.hhp |
| 251 | +DocProject/Help/Html2 |
| 252 | +DocProject/Help/html |
| 253 | + |
| 254 | +# Click-Once directory |
| 255 | +publish/ |
| 256 | + |
| 257 | +# Publish Web Output |
| 258 | +*.[Pp]ublish.xml |
| 259 | +*.azurePubxml |
| 260 | +# Note: Comment the next line if you want to checkin your web deploy settings, |
| 261 | +# but database connection strings (with potential passwords) will be unencrypted |
| 262 | +*.pubxml |
| 263 | +*.publishproj |
| 264 | + |
| 265 | +# Microsoft Azure Web App publish settings. Comment the next line if you want to |
| 266 | +# checkin your Azure Web App publish settings, but sensitive information contained |
| 267 | +# in these scripts will be unencrypted |
| 268 | +PublishScripts/ |
| 269 | + |
| 270 | +# NuGet Packages |
| 271 | +*.nupkg |
| 272 | +# The packages folder can be ignored because of Package Restore |
| 273 | +**/[Pp]ackages/* |
| 274 | +# except build/, which is used as an MSBuild target. |
| 275 | +!**/[Pp]ackages/build/ |
| 276 | +# Uncomment if necessary however generally it will be regenerated when needed |
| 277 | +#!**/[Pp]ackages/repositories.config |
| 278 | +# NuGet v3's project.json files produces more ignorable files |
| 279 | +*.nuget.props |
| 280 | +*.nuget.targets |
| 281 | + |
| 282 | +# Microsoft Azure Build Output |
| 283 | +csx/ |
| 284 | +*.build.csdef |
| 285 | + |
| 286 | +# Microsoft Azure Emulator |
| 287 | +ecf/ |
| 288 | +rcf/ |
| 289 | + |
| 290 | +# Windows Store app package directories and files |
| 291 | +AppPackages/ |
| 292 | +BundleArtifacts/ |
| 293 | +Package.StoreAssociation.xml |
| 294 | +_pkginfo.txt |
| 295 | +*.appx |
| 296 | + |
| 297 | +# Visual Studio cache files |
| 298 | +# files ending in .cache can be ignored |
| 299 | +*.[Cc]ache |
| 300 | +# but keep track of directories ending in .cache |
| 301 | +!*.[Cc]ache/ |
| 302 | + |
| 303 | +# Others |
| 304 | +ClientBin/ |
| 305 | +~$* |
| 306 | +*~ |
| 307 | +*.dbmdl |
| 308 | +*.dbproj.schemaview |
| 309 | +*.jfm |
| 310 | +*.pfx |
| 311 | +*.publishsettings |
| 312 | +orleans.codegen.cs |
| 313 | + |
| 314 | +# Since there are multiple workflows, uncomment next line to ignore bower_components |
| 315 | +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) |
| 316 | +#bower_components/ |
| 317 | + |
| 318 | +# RIA/Silverlight projects |
| 319 | +Generated_Code/ |
| 320 | + |
| 321 | +# Backup & report files from converting an old project file |
| 322 | +# to a newer Visual Studio version. Backup files are not needed, |
| 323 | +# because we have git ;-) |
| 324 | +_UpgradeReport_Files/ |
| 325 | +Backup*/ |
| 326 | +UpgradeLog*.XML |
| 327 | +UpgradeLog*.htm |
| 328 | + |
| 329 | +# SQL Server files |
| 330 | +*.mdf |
| 331 | +*.ldf |
| 332 | +*.ndf |
| 333 | + |
| 334 | +# Business Intelligence projects |
| 335 | +*.rdl.data |
| 336 | +*.bim.layout |
| 337 | +*.bim_*.settings |
| 338 | + |
| 339 | +# Microsoft Fakes |
| 340 | +FakesAssemblies/ |
| 341 | + |
| 342 | +# GhostDoc plugin setting file |
| 343 | +*.GhostDoc.xml |
| 344 | + |
| 345 | +# Node.js Tools for Visual Studio |
| 346 | +.ntvs_analysis.dat |
| 347 | +node_modules/ |
| 348 | + |
| 349 | +# Typescript v1 declaration files |
| 350 | +typings/ |
| 351 | + |
| 352 | +# Visual Studio 6 build log |
| 353 | +*.plg |
| 354 | + |
| 355 | +# Visual Studio 6 workspace options file |
| 356 | +*.opt |
| 357 | + |
| 358 | +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) |
| 359 | +*.vbw |
| 360 | + |
| 361 | +# Visual Studio LightSwitch build output |
| 362 | +**/*.HTMLClient/GeneratedArtifacts |
| 363 | +**/*.DesktopClient/GeneratedArtifacts |
| 364 | +**/*.DesktopClient/ModelManifest.xml |
| 365 | +**/*.Server/GeneratedArtifacts |
| 366 | +**/*.Server/ModelManifest.xml |
| 367 | +_Pvt_Extensions |
| 368 | + |
| 369 | +# Paket dependency manager |
| 370 | +.paket/paket.exe |
| 371 | +paket-files/ |
| 372 | + |
| 373 | +# FAKE - F# Make |
| 374 | +.fake/ |
| 375 | + |
| 376 | +# JetBrains Rider |
| 377 | +.idea/ |
| 378 | +*.sln.iml |
| 379 | + |
| 380 | +# CodeRush |
| 381 | +.cr/ |
| 382 | + |
| 383 | +# Python Tools for Visual Studio (PTVS) |
| 384 | +__pycache__/ |
| 385 | +*.pyc |
| 386 | + |
| 387 | +# Cake - Uncomment if you are using it |
| 388 | +# tools/** |
| 389 | +# !tools/packages.config |
| 390 | + |
| 391 | +# Tabs Studio |
| 392 | +*.tss |
| 393 | + |
| 394 | +# Telerik's JustMock configuration file |
| 395 | +*.jmconfig |
| 396 | + |
| 397 | +# BizTalk build output |
| 398 | +*.btp.cs |
| 399 | +*.btm.cs |
| 400 | +*.odx.cs |
| 401 | +*.xsd.cs |
| 402 | + |
| 403 | +# OpenCover UI analysis results |
| 404 | +OpenCover/ |
| 405 | + |
| 406 | +# autograder.io authentication token |
| 407 | +*agtoken |
0 commit comments