Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

.gitignore 6.0 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. ##
  4. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  5. dist
  6. # User-specific files
  7. *.rsuser
  8. *.suo
  9. *.user
  10. *.userosscache
  11. *.sln.docstates
  12. # User-specific files (MonoDevelop/Xamarin Studio)
  13. *.userprefs
  14. # Mono auto-generated files
  15. mono_crash.*
  16. # Build results
  17. [Dd]ebug/
  18. [Dd]ebugPublic/
  19. [Rr]elease/
  20. [Rr]eleases/
  21. x64/
  22. x86/
  23. [Aa][Rr][Mm]/
  24. [Aa][Rr][Mm]64/
  25. bld/
  26. [Bb]in/
  27. [Oo]bj/
  28. [Ll]og/
  29. [Ll]ogs/
  30. # Visual Studio 2015/2017 cache/options directory
  31. .vs/
  32. # Visual Studio Code cache/options directory
  33. .vscode/
  34. # Uncomment if you have tasks that create the project's static files in wwwroot
  35. #wwwroot/
  36. # Visual Studio 2017 auto-generated files
  37. Generated\ Files/
  38. # MSTest test Results
  39. [Tt]est[Rr]esult*/
  40. [Bb]uild[Ll]og.*
  41. # NUnit
  42. *.VisualState.xml
  43. TestResult.xml
  44. nunit-*.xml
  45. # Build Results of an ATL Project
  46. [Dd]ebugPS/
  47. [Rr]eleasePS/
  48. dlldata.c
  49. # Benchmark Results
  50. BenchmarkDotNet.Artifacts/
  51. # .NET Core
  52. project.lock.json
  53. project.fragment.lock.json
  54. artifacts/
  55. # StyleCop
  56. StyleCopReport.xml
  57. # Files built by Visual Studio
  58. *_i.c
  59. *_p.c
  60. *_h.h
  61. *.ilk
  62. *.meta
  63. *.obj
  64. *.iobj
  65. *.pch
  66. *.pdb
  67. *.ipdb
  68. *.pgc
  69. *.pgd
  70. *.rsp
  71. *.sbr
  72. *.tlb
  73. *.tli
  74. *.tlh
  75. *.tmp
  76. *.tmp_proj
  77. *_wpftmp.csproj
  78. *.log
  79. *.vspscc
  80. *.vssscc
  81. .builds
  82. *.pidb
  83. *.svclog
  84. *.scc
  85. # Chutzpah Test files
  86. _Chutzpah*
  87. # Visual C++ cache files
  88. ipch/
  89. *.aps
  90. *.ncb
  91. *.opendb
  92. *.opensdf
  93. *.sdf
  94. *.cachefile
  95. *.VC.db
  96. *.VC.VC.opendb
  97. # Visual Studio profiler
  98. *.psess
  99. *.vsp
  100. *.vspx
  101. *.sap
  102. # Visual Studio Trace Files
  103. *.e2e
  104. # TFS 2012 Local Workspace
  105. $tf/
  106. # Guidance Automation Toolkit
  107. *.gpState
  108. # ReSharper is a .NET coding add-in
  109. _ReSharper*/
  110. *.[Rr]e[Ss]harper
  111. *.DotSettings.user
  112. # TeamCity is a build add-in
  113. _TeamCity*
  114. # DotCover is a Code Coverage Tool
  115. *.dotCover
  116. # AxoCover is a Code Coverage Tool
  117. .axoCover/*
  118. !.axoCover/settings.json
  119. # Visual Studio code coverage results
  120. *.coverage
  121. *.coveragexml
  122. # NCrunch
  123. _NCrunch_*
  124. .*crunch*.local.xml
  125. nCrunchTemp_*
  126. # MightyMoose
  127. *.mm.*
  128. AutoTest.Net/
  129. # Web workbench (sass)
  130. .sass-cache/
  131. # Installshield output folder
  132. [Ee]xpress/
  133. # DocProject is a documentation generator add-in
  134. DocProject/buildhelp/
  135. DocProject/Help/*.HxT
  136. DocProject/Help/*.HxC
  137. DocProject/Help/*.hhc
  138. DocProject/Help/*.hhk
  139. DocProject/Help/*.hhp
  140. DocProject/Help/Html2
  141. DocProject/Help/html
  142. # Click-Once directory
  143. publish/
  144. # Publish Web Output
  145. *.[Pp]ublish.xml
  146. *.azurePubxml
  147. # Note: Comment the next line if you want to checkin your web deploy settings,
  148. # but database connection strings (with potential passwords) will be unencrypted
  149. *.pubxml
  150. *.publishproj
  151. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  152. # checkin your Azure Web App publish settings, but sensitive information contained
  153. # in these scripts will be unencrypted
  154. PublishScripts/
  155. # NuGet Packages
  156. *.nupkg
  157. # NuGet Symbol Packages
  158. *.snupkg
  159. # The packages folder can be ignored because of Package Restore
  160. **/[Pp]ackages/*
  161. # except build/, which is used as an MSBuild target.
  162. !**/[Pp]ackages/build/
  163. # Uncomment if necessary however generally it will be regenerated when needed
  164. #!**/[Pp]ackages/repositories.config
  165. # NuGet v3's project.json files produces more ignorable files
  166. *.nuget.props
  167. *.nuget.targets
  168. # Microsoft Azure Build Output
  169. csx/
  170. *.build.csdef
  171. # Microsoft Azure Emulator
  172. ecf/
  173. rcf/
  174. # Windows Store app package directories and files
  175. AppPackages/
  176. BundleArtifacts/
  177. Package.StoreAssociation.xml
  178. _pkginfo.txt
  179. *.appx
  180. *.appxbundle
  181. *.appxupload
  182. # Visual Studio cache files
  183. # files ending in .cache can be ignored
  184. *.[Cc]ache
  185. # but keep track of directories ending in .cache
  186. !?*.[Cc]ache/
  187. # Others
  188. ClientBin/
  189. ~$*
  190. *~
  191. *.dbmdl
  192. *.dbproj.schemaview
  193. *.jfm
  194. *.pfx
  195. *.publishsettings
  196. orleans.codegen.cs
  197. # Including strong name files can present a security risk
  198. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  199. #*.snk
  200. # Since there are multiple workflows, uncomment next line to ignore bower_components
  201. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  202. #bower_components/
  203. # RIA/Silverlight projects
  204. Generated_Code/
  205. # Backup & report files from converting an old project file
  206. # to a newer Visual Studio version. Backup files are not needed,
  207. # because we have git ;-)
  208. _UpgradeReport_Files/
  209. Backup*/
  210. UpgradeLog*.XML
  211. UpgradeLog*.htm
  212. ServiceFabricBackup/
  213. *.rptproj.bak
  214. # SQL Server files
  215. *.mdf
  216. *.ldf
  217. *.ndf
  218. # Business Intelligence projects
  219. *.rdl.data
  220. *.bim.layout
  221. *.bim_*.settings
  222. *.rptproj.rsuser
  223. *- [Bb]ackup.rdl
  224. *- [Bb]ackup ([0-9]).rdl
  225. *- [Bb]ackup ([0-9][0-9]).rdl
  226. # Microsoft Fakes
  227. FakesAssemblies/
  228. # GhostDoc plugin setting file
  229. *.GhostDoc.xml
  230. # Node.js Tools for Visual Studio
  231. .ntvs_analysis.dat
  232. node_modules/
  233. # Visual Studio 6 build log
  234. *.plg
  235. # Visual Studio 6 workspace options file
  236. *.opt
  237. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  238. *.vbw
  239. # Visual Studio LightSwitch build output
  240. **/*.HTMLClient/GeneratedArtifacts
  241. **/*.DesktopClient/GeneratedArtifacts
  242. **/*.DesktopClient/ModelManifest.xml
  243. **/*.Server/GeneratedArtifacts
  244. **/*.Server/ModelManifest.xml
  245. _Pvt_Extensions
  246. # Paket dependency manager
  247. .paket/paket.exe
  248. paket-files/
  249. # FAKE - F# Make
  250. .fake/
  251. # CodeRush personal settings
  252. .cr/personal
  253. # Python Tools for Visual Studio (PTVS)
  254. __pycache__/
  255. *.pyc
  256. # Cake - Uncomment if you are using it
  257. # tools/**
  258. # !tools/packages.config
  259. # Tabs Studio
  260. *.tss
  261. # Telerik's JustMock configuration file
  262. *.jmconfig
  263. # BizTalk build output
  264. *.btp.cs
  265. *.btm.cs
  266. *.odx.cs
  267. *.xsd.cs
  268. # OpenCover UI analysis results
  269. OpenCover/
  270. # Azure Stream Analytics local run output
  271. ASALocalRun/
  272. # MSBuild Binary and Structured Log
  273. *.binlog
  274. # NVidia Nsight GPU debugger configuration file
  275. *.nvuser
  276. # MFractors (Xamarin productivity tool) working folder
  277. .mfractor/
  278. # Local History for Visual Studio
  279. .localhistory/
  280. # BeatPulse healthcheck temp database
  281. healthchecksdb
  282. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  283. MigrationBackup/
  284. # Ionide (cross platform F# VS Code tools) working folder
  285. .ionide/
  286. # Mac-specific
  287. .DS_Store
  288. .Rproj.user
  289. .Rdata
  290. .Rhistory
  291. ML-For-Beginners.Rproj
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...