.gitignore 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559
  1. # maven项目编译目标路径
  2. target/
  3. # vscode项目配置文件路径
  4. .vscode
  5. # office 临时文件
  6. ~$*
  7. # 屏蔽的文件
  8. ignored/### Java template
  9. # Compiled class file
  10. *.class
  11. # Log file
  12. *.log
  13. # BlueJ files
  14. *.ctxt
  15. # Mobile Tools for Java (J2ME)
  16. .mtj.tmp/
  17. # Package Files #
  18. *.jar
  19. *.war
  20. *.nar
  21. *.ear
  22. *.zip
  23. *.tar.gz
  24. *.rar
  25. # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
  26. hs_err_pid*
  27. ### Maven template
  28. pom.xml.tag
  29. pom.xml.releaseBackup
  30. pom.xml.versionsBackup
  31. pom.xml.next
  32. release.properties
  33. dependency-reduced-pom.xml
  34. buildNumber.properties
  35. .mvn/timing.properties
  36. # https://github.com/takari/maven-wrapper#usage-without-binary-jar
  37. .mvn/wrapper/maven-wrapper.jar
  38. ### VisualStudioCode template
  39. .vscode/*
  40. !.vscode/settings.json
  41. !.vscode/tasks.json
  42. !.vscode/launch.json
  43. !.vscode/extensions.json
  44. *.code-workspace
  45. # Local History for Visual Studio Code
  46. .history/
  47. ### JetBrains template
  48. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  49. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  50. # User-specific stuff
  51. .idea/**/workspace.xml
  52. .idea/**/tasks.xml
  53. .idea/**/usage.statistics.xml
  54. .idea/**/dictionaries
  55. .idea/**/shelf
  56. # Generated files
  57. .idea/**/contentModel.xml
  58. # Sensitive or high-churn files
  59. .idea/**/dataSources/
  60. .idea/**/dataSources.ids
  61. .idea/**/dataSources.local.xml
  62. .idea/**/sqlDataSources.xml
  63. .idea/**/dynamic.xml
  64. .idea/**/uiDesigner.xml
  65. .idea/**/dbnavigator.xml
  66. # Gradle
  67. .idea/**/gradle.xml
  68. .idea/**/libraries
  69. # Gradle and Maven with auto-import
  70. # When using Gradle or Maven with auto-import, you should exclude module files,
  71. # since they will be recreated, and may cause churn. Uncomment if using
  72. # auto-import.
  73. # .idea/artifacts
  74. # .idea/compiler.xml
  75. # .idea/jarRepositories.xml
  76. # .idea/modules.xml
  77. # .idea/*.iml
  78. # .idea/modules
  79. # *.iml
  80. # *.ipr
  81. # CMake
  82. cmake-build-*/
  83. # Mongo Explorer plugin
  84. .idea/**/mongoSettings.xml
  85. # File-based project format
  86. *.iws
  87. # IntelliJ
  88. out/
  89. # mpeltonen/sbt-idea plugin
  90. .idea_modules/
  91. # JIRA plugin
  92. atlassian-ide-plugin.xml
  93. # Cursive Clojure plugin
  94. .idea/replstate.xml
  95. # Crashlytics plugin (for Android Studio and IntelliJ)
  96. com_crashlytics_export_strings.xml
  97. crashlytics.properties
  98. crashlytics-build.properties
  99. fabric.properties
  100. # Editor-based Rest Client
  101. .idea/httpRequests
  102. # Android studio 3.1+ serialized cache file
  103. .idea/caches/build_file_checksums.ser
  104. ### Eclipse template
  105. .metadata
  106. bin/
  107. tmp/
  108. *.tmp
  109. *.bak
  110. *.swp
  111. *~.nib
  112. local.properties
  113. .settings/
  114. .loadpath
  115. .recommenders
  116. # External tool builders
  117. .externalToolBuilders/
  118. # Locally stored "Eclipse launch configurations"
  119. *.launch
  120. # PyDev specific (Python IDE for Eclipse)
  121. *.pydevproject
  122. # CDT-specific (C/C++ Development Tooling)
  123. .cproject
  124. # CDT- autotools
  125. .autotools
  126. # Java annotation processor (APT)
  127. .factorypath
  128. # PDT-specific (PHP Development Tools)
  129. .buildpath
  130. # sbteclipse plugin
  131. .target
  132. # Tern plugin
  133. .tern-project
  134. # TeXlipse plugin
  135. .texlipse
  136. # STS (Spring Tool Suite)
  137. .springBeans
  138. # Code Recommenders
  139. .recommenders/
  140. # Annotation Processing
  141. .apt_generated/
  142. .apt_generated_test/
  143. # Scala IDE specific (Scala & Java development for Eclipse)
  144. .cache-main
  145. .scala_dependencies
  146. .worksheet
  147. # Uncomment this line if you wish to ignore the project description file.
  148. # Typically, this file would be tracked if it contains build/dependency configurations:
  149. #.project
  150. ### Example user template template
  151. ### Example user template
  152. # IntelliJ project files
  153. .idea
  154. *.iml
  155. out
  156. gen
  157. ### VisualStudio template
  158. ## Ignore Visual Studio temporary files, build results, and
  159. ## files generated by popular Visual Studio add-ons.
  160. ##
  161. ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  162. # User-specific files
  163. *.rsuser
  164. *.suo
  165. *.user
  166. *.userosscache
  167. *.sln.docstates
  168. # User-specific files (MonoDevelop/Xamarin Studio)
  169. *.userprefs
  170. # Mono auto generated files
  171. mono_crash.*
  172. # Build results
  173. [Dd]ebug/
  174. [Dd]ebugPublic/
  175. [Rr]elease/
  176. [Rr]eleases/
  177. x64/
  178. x86/
  179. [Ww][Ii][Nn]32/
  180. [Aa][Rr][Mm]/
  181. [Aa][Rr][Mm]64/
  182. bld/
  183. [Bb]in/
  184. [Oo]bj/
  185. [Ll]og/
  186. [Ll]ogs/
  187. # Visual Studio 2015/2017 cache/options directory
  188. .vs/
  189. # Uncomment if you have tasks that create the project's static files in wwwroot
  190. #wwwroot/
  191. # Visual Studio 2017 auto generated files
  192. Generated\ Files/
  193. # MSTest test Results
  194. [Tt]est[Rr]esult*/
  195. [Bb]uild[Ll]og.*
  196. # NUnit
  197. *.VisualState.xml
  198. TestResult.xml
  199. nunit-*.xml
  200. # Build Results of an ATL Project
  201. [Dd]ebugPS/
  202. [Rr]eleasePS/
  203. dlldata.c
  204. # Benchmark Results
  205. BenchmarkDotNet.Artifacts/
  206. # .NET Core
  207. project.lock.json
  208. project.fragment.lock.json
  209. artifacts/
  210. # ASP.NET Scaffolding
  211. ScaffoldingReadMe.txt
  212. # StyleCop
  213. StyleCopReport.xml
  214. # Files built by Visual Studio
  215. *_i.c
  216. *_p.c
  217. *_h.h
  218. *.ilk
  219. *.meta
  220. *.obj
  221. *.iobj
  222. *.pch
  223. *.pdb
  224. *.ipdb
  225. *.pgc
  226. *.pgd
  227. *.rsp
  228. *.sbr
  229. *.tlb
  230. *.tli
  231. *.tlh
  232. *.tmp_proj
  233. *_wpftmp.csproj
  234. *.vspscc
  235. *.vssscc
  236. .builds
  237. *.pidb
  238. *.svclog
  239. *.scc
  240. # Chutzpah Test files
  241. _Chutzpah*
  242. # Visual C++ cache files
  243. ipch/
  244. *.aps
  245. *.ncb
  246. *.opendb
  247. *.opensdf
  248. *.sdf
  249. *.cachefile
  250. *.VC.db
  251. *.VC.VC.opendb
  252. # Visual Studio profiler
  253. *.psess
  254. *.vsp
  255. *.vspx
  256. *.sap
  257. # Visual Studio Trace Files
  258. *.e2e
  259. # TFS 2012 Local Workspace
  260. $tf/
  261. # Guidance Automation Toolkit
  262. *.gpState
  263. # ReSharper is a .NET coding add-in
  264. _ReSharper*/
  265. *.[Rr]e[Ss]harper
  266. *.DotSettings.user
  267. # TeamCity is a build add-in
  268. _TeamCity*
  269. # DotCover is a Code Coverage Tool
  270. *.dotCover
  271. # AxoCover is a Code Coverage Tool
  272. .axoCover/*
  273. !.axoCover/settings.json
  274. # Coverlet is a free, cross platform Code Coverage Tool
  275. coverage*.json
  276. coverage*.xml
  277. coverage*.info
  278. # Visual Studio code coverage results
  279. *.coverage
  280. *.coveragexml
  281. # NCrunch
  282. _NCrunch_*
  283. .*crunch*.local.xml
  284. nCrunchTemp_*
  285. # MightyMoose
  286. *.mm.*
  287. AutoTest.Net/
  288. # Web workbench (sass)
  289. .sass-cache/
  290. # Installshield output folder
  291. [Ee]xpress/
  292. # DocProject is a documentation generator add-in
  293. DocProject/buildhelp/
  294. DocProject/Help/*.HxT
  295. DocProject/Help/*.HxC
  296. DocProject/Help/*.hhc
  297. DocProject/Help/*.hhk
  298. DocProject/Help/*.hhp
  299. DocProject/Help/Html2
  300. DocProject/Help/html
  301. # Click-Once directory
  302. publish/
  303. # Publish Web Output
  304. *.[Pp]ublish.xml
  305. *.azurePubxml
  306. # Note: Comment the next line if you want to checkin your web deploy settings,
  307. # but database connection strings (with potential passwords) will be unencrypted
  308. *.pubxml
  309. *.publishproj
  310. # Microsoft Azure Web App publish settings. Comment the next line if you want to
  311. # checkin your Azure Web App publish settings, but sensitive information contained
  312. # in these scripts will be unencrypted
  313. PublishScripts/
  314. # NuGet Packages
  315. *.nupkg
  316. # NuGet Symbol Packages
  317. *.snupkg
  318. # The packages folder can be ignored because of Package Restore
  319. **/[Pp]ackages/*
  320. # except build/, which is used as an MSBuild target.
  321. !**/[Pp]ackages/build/
  322. # Uncomment if necessary however generally it will be regenerated when needed
  323. #!**/[Pp]ackages/repositories.config
  324. # NuGet v3's project.json files produces more ignorable files
  325. *.nuget.props
  326. *.nuget.targets
  327. # Microsoft Azure Build Output
  328. csx/
  329. *.build.csdef
  330. # Microsoft Azure Emulator
  331. ecf/
  332. rcf/
  333. # Windows Store app package directories and files
  334. AppPackages/
  335. BundleArtifacts/
  336. Package.StoreAssociation.xml
  337. _pkginfo.txt
  338. *.appx
  339. *.appxbundle
  340. *.appxupload
  341. # Visual Studio cache files
  342. # files ending in .cache can be ignored
  343. *.[Cc]ache
  344. # but keep track of directories ending in .cache
  345. !?*.[Cc]ache/
  346. # Others
  347. ClientBin/
  348. *~
  349. *.dbmdl
  350. *.dbproj.schemaview
  351. *.jfm
  352. *.pfx
  353. *.publishsettings
  354. orleans.codegen.cs
  355. # Including strong name files can present a security risk
  356. # (https://github.com/github/gitignore/pull/2483#issue-259490424)
  357. #*.snk
  358. # Since there are multiple workflows, uncomment next line to ignore bower_components
  359. # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
  360. #bower_components/
  361. # RIA/Silverlight projects
  362. Generated_Code/
  363. # Backup & report files from converting an old project file
  364. # to a newer Visual Studio version. Backup files are not needed,
  365. # because we have git ;-)
  366. _UpgradeReport_Files/
  367. Backup*/
  368. UpgradeLog*.XML
  369. UpgradeLog*.htm
  370. ServiceFabricBackup/
  371. *.rptproj.bak
  372. # SQL Server files
  373. *.mdf
  374. *.ldf
  375. *.ndf
  376. # Business Intelligence projects
  377. *.rdl.data
  378. *.bim.layout
  379. *.bim_*.settings
  380. *.rptproj.rsuser
  381. *- [Bb]ackup.rdl
  382. *- [Bb]ackup ([0-9]).rdl
  383. *- [Bb]ackup ([0-9][0-9]).rdl
  384. # Microsoft Fakes
  385. FakesAssemblies/
  386. # GhostDoc plugin setting file
  387. *.GhostDoc.xml
  388. # Node.js Tools for Visual Studio
  389. .ntvs_analysis.dat
  390. node_modules/
  391. # Visual Studio 6 build log
  392. *.plg
  393. # Visual Studio 6 workspace options file
  394. *.opt
  395. # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
  396. *.vbw
  397. # Visual Studio LightSwitch build output
  398. **/*.HTMLClient/GeneratedArtifacts
  399. **/*.DesktopClient/GeneratedArtifacts
  400. **/*.DesktopClient/ModelManifest.xml
  401. **/*.Server/GeneratedArtifacts
  402. **/*.Server/ModelManifest.xml
  403. _Pvt_Extensions
  404. # Paket dependency manager
  405. .paket/paket.exe
  406. paket-files/
  407. # FAKE - F# Make
  408. .fake/
  409. # CodeRush personal settings
  410. .cr/personal
  411. # Python Tools for Visual Studio (PTVS)
  412. __pycache__/
  413. *.pyc
  414. # Cake - Uncomment if you are using it
  415. # tools/**
  416. # !tools/packages.config
  417. # Tabs Studio
  418. *.tss
  419. # Telerik's JustMock configuration file
  420. *.jmconfig
  421. # BizTalk build output
  422. *.btp.cs
  423. *.btm.cs
  424. *.odx.cs
  425. *.xsd.cs
  426. # OpenCover UI analysis results
  427. OpenCover/
  428. # Azure Stream Analytics local run output
  429. ASALocalRun/
  430. # MSBuild Binary and Structured Log
  431. *.binlog
  432. # NVidia Nsight GPU debugger configuration file
  433. *.nvuser
  434. # MFractors (Xamarin productivity tool) working folder
  435. .mfractor/
  436. # Local History for Visual Studio
  437. .localhistory/
  438. # BeatPulse healthcheck temp database
  439. healthchecksdb
  440. # Backup folder for Package Reference Convert tool in Visual Studio 2017
  441. MigrationBackup/
  442. # Ionide (cross platform F# VS Code tools) working folder
  443. .ionide/
  444. # Fody - auto-generated XML schema
  445. FodyWeavers.xsd