idea .gitignore template

IDEA project created, you need to put forward a .gitignore file, the file contents can refer to plug-ins.


   
   
  1. # Created by .ignore support plugin (hsz.mobi)
  2. ### JetBrains template
  3. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
  4. *.iml
  5. ## Directory-based project format:
  6. .idea/
  7. # if you remove the above rule, at least ignore the following:
  8. # User-specific stuff:
  9. # .idea/workspace.xml
  10. # .idea/tasks.xml
  11. # .idea/dictionaries
  12. # Sensitive or high-churn files:
  13. # .idea/dataSources.ids
  14. # .idea/dataSources.xml
  15. # .idea/sqlDataSources.xml
  16. # .idea/dynamic.xml
  17. # .idea/uiDesigner.xml
  18. # Gradle:
  19. # .idea/gradle.xml
  20. # .idea/libraries
  21. *.log
  22. # Mongo Explorer plugin:
  23. # .idea/mongoSettings.xml
  24. ## File-based project format:
  25. *.ipr
  26. *.iws
  27. ## Plugin-specific files:
  28. # IntelliJ
  29. /out/
  30. # mpeltonen/sbt-idea plugin
  31. .idea_modules/
  32. # JIRA plugin
  33. atlassian-ide-plugin.xml
  34. # Crashlytics plugin (for Android Studio and IntelliJ)
  35. com_crashlytics_export_strings.xml
  36. crashlytics.properties
  37. crashlytics-build.properties
  38. ### Maven template
  39. target/
  40. pom.xml.tag
  41. pom.xml.releaseBackup
  42. pom.xml.versionsBackup
  43. pom.xml.next
  44. release.properties
  45. dependency-reduced-pom.xml
  46. buildNumber.properties
  47. .mvn/timing.properties


Original Address: https: //blog.csdn.net/u010372981/article/details/78422687

Guess you like

Origin www.cnblogs.com/jpfss/p/11888004.html