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 4.2 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
  1. ## Ignore Visual Studio temporary files, build results, and
  2. ## files generated by popular Visual Studio add-ons.
  3. # User-specific files
  4. *.suo
  5. *.user
  6. *.userosscache
  7. *.sln.docstates
  8. # User-specific files (MonoDevelop/Xamarin Studio)
  9. *.userprefs
  10. # Build results
  11. [Dd]ebug/
  12. [Dd]ebugPublic/
  13. [Rr]elease/
  14. [Rr]eleases/
  15. x64/
  16. x86/
  17. bld/
  18. [Bb]in/
  19. [Oo]bj/
  20. [Ll]og/
  21. # Visual Studio 2015 cache/options directory
  22. .vs/
  23. # Uncomment if you have tasks that create the project's static files in wwwroot
  24. #wwwroot/
  25. # MSTest test Results
  26. [Tt]est[Rr]esult*/
  27. [Bb]uild[Ll]og.*
  28. # NUNIT
  29. *.VisualState.xml
  30. TestResult.xml
  31. # Build Results of an ATL Project
  32. [Dd]ebugPS/
  33. [Rr]eleasePS/
  34. dlldata.c
  35. # DNX
  36. project.lock.json
  37. artifacts/
  38. *_i.c
  39. *_p.c
  40. *_i.h
  41. *.ilk
  42. *.meta
  43. *.obj
  44. *.pch
  45. *.pdb
  46. *.pgc
  47. *.pgd
  48. *.rsp
  49. *.sbr
  50. *.tlb
  51. *.tli
  52. *.tlh
  53. *.tmp
  54. *.tmp_proj
  55. *.log
  56. *.vspscc
  57. *.vssscc
  58. .builds
  59. *.pidb
  60. *.svclog
  61. *.scc
  62. # Chutzpah Test files
  63. _Chutzpah*
  64. # Visual C++ cache files
  65. ipch/
  66. *.aps
  67. *.ncb
  68. *.opendb
  69. *.opensdf
  70. *.sdf
  71. *.cachefile
  72. *.VC.db
  73. *.VC.VC.opendb
  74. # Visual Studio profiler
  75. *.psess
  76. *.vsp
  77. *.vspx
  78. *.sap
  79. # TFS 2012 Local Workspace
  80. $tf/
  81. # Guidance Automation Toolkit
  82. *.gpState
  83. # ReSharper is a .NET coding add-in
  84. _ReSharper*/
  85. *.[Rr]e[Ss]harper
  86. *.DotSettings.user
  87. # JustCode is a .NET coding add-in
  88. .JustCode
  89. # TeamCity is a build add-in
  90. _TeamCity*
  91. # DotCover is a Code Coverage Tool
  92. *.dotCover
  93. # NCrunch
  94. _NCrunch_*
  95. .*crunch*.local.xml
  96. nCrunchTemp_*
  97. # MightyMoose
  98. *.mm.*
  99. AutoTest.Net/
  100. # Web workbench (sass)
  101. .sass-cache/
  102. # Installshield output folder
  103. [Ee]xpress/
  104. # DocProject is a documentation generator add-in
  105. DocProject/buildhelp/
  106. DocProject/Help/*.HxT
  107. DocProject/Help/*.HxC
  108. DocProject/Help/*.hhc
  109. DocProject/Help/*.hhk
  110. DocProject/Help/*.hhp
  111. DocProject/Help/Html2
  112. DocProject/Help/html
  113. # Click-Once directory
  114. publish/
  115. # Publish Web Output
  116. *.[Pp]ublish.xml
  117. *.azurePubxml
  118. # TODO: Comment the next line if you want to checkin your web deploy settings
  119. # but database connection strings (with potential passwords) will be unencrypted
  120. *.pubxml
  121. *.publishproj
  122. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  123. # checkin your Azure Web App publish settings, but sensitive information contained
  124. # in these scripts will be unencrypted
  125. PublishScripts/
  126. # NuGet Packages
  127. *.nupkg
  128. # The packages folder can be ignored because of Package Restore
  129. **/packages/*
  130. # except build/, which is used as an MSBuild target.
  131. !**/packages/build/
  132. # Uncomment if necessary however generally it will be regenerated when needed
  133. #!**/packages/repositories.config
  134. # NuGet v3's project.json files produces more ignoreable files
  135. *.nuget.props
  136. *.nuget.targets
  137. # Microsoft Azure Build Output
  138. csx/
  139. *.build.csdef
  140. # Microsoft Azure Emulator
  141. ecf/
  142. rcf/
  143. # Windows Store app package directories and files
  144. AppPackages/
  145. BundleArtifacts/
  146. Package.StoreAssociation.xml
  147. _pkginfo.txt
  148. # Visual Studio cache files
  149. # files ending in .cache can be ignored
  150. *.[Cc]ache
  151. # but keep track of directories ending in .cache
  152. !*.[Cc]ache/
  153. # Others
  154. ClientBin/
  155. ~$*
  156. *~
  157. *.dbmdl
  158. *.dbproj.schemaview
  159. *.pfx
  160. *.publishsettings
  161. node_modules/
  162. orleans.codegen.cs
  163. # Since there are multiple workflows, uncomment next line to ignore bower_components
  164. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  165. #bower_components/
  166. # RIA/Silverlight projects
  167. Generated_Code/
  168. # Backup & report files from converting an old project file
  169. # to a newer Visual Studio version. Backup files are not needed,
  170. # because we have git ;-)
  171. _UpgradeReport_Files/
  172. Backup*/
  173. UpgradeLog*.XML
  174. UpgradeLog*.htm
  175. # SQL Server files
  176. *.mdf
  177. *.ldf
  178. # Business Intelligence projects
  179. *.rdl.data
  180. *.bim.layout
  181. *.bim_*.settings
  182. # Microsoft Fakes
  183. FakesAssemblies/
  184. # GhostDoc plugin setting file
  185. *.GhostDoc.xml
  186. # Node.js Tools for Visual Studio
  187. .ntvs_analysis.dat
  188. # Visual Studio 6 build log
  189. *.plg
  190. # Visual Studio 6 workspace options file
  191. *.opt
  192. # Visual Studio LightSwitch build output
  193. **/*.HTMLClient/GeneratedArtifacts
  194. **/*.DesktopClient/GeneratedArtifacts
  195. **/*.DesktopClient/ModelManifest.xml
  196. **/*.Server/GeneratedArtifacts
  197. **/*.Server/ModelManifest.xml
  198. _Pvt_Extensions
  199. # Paket dependency manager
  200. .paket/paket.exe
  201. paket-files/
  202. # FAKE - F# Make
  203. .fake/
  204. # JetBrains Rider
  205. .idea/
  206. *.sln.iml
  207. # Node
  208. /**/node_modules
  209. # Visual Studio Code
  210. .vscode/
Tip!

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

Comments

Loading...