.gitignore 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. # 这是一个.gitignore文件的样例模板
  2. # maven项目编译目标路径
  3. target/
  4. # vscode项目配置文件路径
  5. .vscode
  6. # office 临时文件
  7. ~$*### VisualStudioCode template
  8. .vscode/*
  9. !.vscode/settings.json
  10. !.vscode/tasks.json
  11. !.vscode/launch.json
  12. !.vscode/extensions.json
  13. *.code-workspace
  14. # Local History for Visual Studio Code
  15. .history/
  16. ### JetBrains template
  17. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  18. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  19. # User-specific stuff
  20. .idea/**/workspace.xml
  21. .idea/**/tasks.xml
  22. .idea/**/usage.statistics.xml
  23. .idea/**/dictionaries
  24. .idea/**/shelf
  25. # Generated files
  26. .idea/**/contentModel.xml
  27. # Sensitive or high-churn files
  28. .idea/**/dataSources/
  29. .idea/**/dataSources.ids
  30. .idea/**/dataSources.local.xml
  31. .idea/**/sqlDataSources.xml
  32. .idea/**/dynamic.xml
  33. .idea/**/uiDesigner.xml
  34. .idea/**/dbnavigator.xml
  35. # Gradle
  36. .idea/**/gradle.xml
  37. .idea/**/libraries
  38. # Gradle and Maven with auto-import
  39. # When using Gradle or Maven with auto-import, you should exclude module files,
  40. # since they will be recreated, and may cause churn. Uncomment if using
  41. # auto-import.
  42. # .idea/artifacts
  43. # .idea/compiler.xml
  44. # .idea/jarRepositories.xml
  45. # .idea/modules.xml
  46. # .idea/*.iml
  47. # .idea/modules
  48. # *.iml
  49. # *.ipr
  50. # CMake
  51. cmake-build-*/
  52. # Mongo Explorer plugin
  53. .idea/**/mongoSettings.xml
  54. # File-based project format
  55. *.iws
  56. # IntelliJ
  57. out/
  58. # mpeltonen/sbt-idea plugin
  59. .idea_modules/
  60. # JIRA plugin
  61. atlassian-ide-plugin.xml
  62. # Cursive Clojure plugin
  63. .idea/replstate.xml
  64. # Crashlytics plugin (for Android Studio and IntelliJ)
  65. com_crashlytics_export_strings.xml
  66. crashlytics.properties
  67. crashlytics-build.properties
  68. fabric.properties
  69. # Editor-based Rest Client
  70. .idea/httpRequests
  71. # Android studio 3.1+ serialized cache file
  72. .idea/caches/build_file_checksums.ser
  73. ### Eclipse template
  74. .metadata
  75. bin/
  76. tmp/
  77. *.tmp
  78. *.bak
  79. *.swp
  80. *~.nib
  81. local.properties
  82. .settings/
  83. .loadpath
  84. .recommenders
  85. # External tool builders
  86. .externalToolBuilders/
  87. # Locally stored "Eclipse launch configurations"
  88. *.launch
  89. # PyDev specific (Python IDE for Eclipse)
  90. *.pydevproject
  91. # CDT-specific (C/C++ Development Tooling)
  92. .cproject
  93. # CDT- autotools
  94. .autotools
  95. # Java annotation processor (APT)
  96. .factorypath
  97. # PDT-specific (PHP Development Tools)
  98. .buildpath
  99. # sbteclipse plugin
  100. .target
  101. # Tern plugin
  102. .tern-project
  103. # TeXlipse plugin
  104. .texlipse
  105. # STS (Spring Tool Suite)
  106. .springBeans
  107. # Code Recommenders
  108. .recommenders/
  109. # Annotation Processing
  110. .apt_generated/
  111. .apt_generated_test/
  112. # Scala IDE specific (Scala & Java development for Eclipse)
  113. .cache-main
  114. .scala_dependencies
  115. .worksheet
  116. # Uncomment this line if you wish to ignore the project description file.
  117. # Typically, this file would be tracked if it contains build/dependency configurations:
  118. #.project
  119. ### Example user template template
  120. ### Example user template
  121. # IntelliJ project files
  122. .idea
  123. *.iml
  124. out
  125. gen