.gitignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. # User ================================
  2. # 用户自定义的其他忽略文件
  3. # Clion ================================
  4. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
  5. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  6. # User-specific stuff
  7. .idea/**/workspace.xml
  8. .idea/**/tasks.xml
  9. .idea/**/usage.statistics.xml
  10. .idea/**/dictionaries
  11. .idea/**/shelf
  12. # Generated files
  13. .idea/**/contentModel.xml
  14. # Sensitive or high-churn files
  15. .idea/**/dataSources/
  16. .idea/**/dataSources.ids
  17. .idea/**/dataSources.local.xml
  18. .idea/**/sqlDataSources.xml
  19. .idea/**/dynamic.xml
  20. .idea/**/uiDesigner.xml
  21. .idea/**/dbnavigator.xml
  22. # Gradle
  23. .idea/**/gradle.xml
  24. .idea/**/libraries
  25. # Gradle and Maven with auto-import
  26. # When using Gradle or Maven with auto-import, you should exclude module files,
  27. # since they will be recreated, and may cause churn. Uncomment if using
  28. # auto-import.
  29. # .idea/modules.xml
  30. # .idea/*.iml
  31. # .idea/modules
  32. # *.iml
  33. # *.ipr
  34. # CMake
  35. cmake-build-*/
  36. # Mongo Explorer plugin
  37. .idea/**/mongoSettings.xml
  38. # File-based project format
  39. *.iws
  40. # IntelliJ
  41. out/
  42. # mpeltonen/sbt-idea plugin
  43. .idea_modules/
  44. # JIRA plugin
  45. atlassian-ide-plugin.xml
  46. # Cursive Clojure plugin
  47. .idea/replstate.xml
  48. # Crashlytics plugin (for Android Studio and IntelliJ)
  49. com_crashlytics_export_strings.xml
  50. crashlytics.properties
  51. crashlytics-build.properties
  52. fabric.properties
  53. # Editor-based Rest Client
  54. .idea/httpRequests
  55. # Android studio 3.1+ serialized cache file
  56. .idea/caches/build_file_checksums.ser
  57. # vscode ================================
  58. .vscode/*
  59. !.vscode/settings.json
  60. !.vscode/tasks.json
  61. !.vscode/launch.json
  62. !.vscode/extensions.json
  63. # C++ ================================
  64. Prerequisites
  65. *.d
  66. # Compiled Object files
  67. *.slo
  68. *.lo
  69. *.o
  70. *.obj
  71. # Precompiled Headers
  72. *.gch
  73. *.pch
  74. # Compiled Dynamic libraries
  75. *.so
  76. *.dylib
  77. *.dll
  78. # Fortran module files
  79. *.mod
  80. *.smod
  81. # Compiled Static libraries
  82. *.lai
  83. *.la
  84. *.a
  85. *.lib
  86. # Executables
  87. *.exe
  88. *.out
  89. *.app
  90. # CMake ================================
  91. bin/
  92. build/
  93. CMakeLists.txt.user
  94. CMakeCache.txt
  95. CMakeFiles
  96. CMakeScripts
  97. Testing
  98. Makefile
  99. cmake_install.cmake
  100. install_manifest.txt
  101. compile_commands.json
  102. CTestTestfile.cmake