GIT 问题中的 PhpStorm .idea
PhpStorm .idea in GIT issues
为了让每个团队成员的代码风格保持一致,我们的项目将 PhpStorm 配置文件作为 GIT 的一部分。
条件
VCS 包含 .idea 中的配置文件。文件列表:
codeStyles/codeStyleConfig.xml
sqldialects.xml
inspectionProfiles/Project_defaults.xml
;
问题
- 项目根目录显示为空;
- 索引问题(索引过程永远不会完成)
- 树显示错误(文件在某些目录中未显示,总是“正在加载文件...”)
解决方法
如果我删除整个 .idea
文件夹及其中的文件并且 PhpStorm 重新初始化设置,一切似乎都正常。
有没有人遇到过类似的事情?
你能推荐什么?
您应该忽略所有 user-specific 配置文件。以下是应添加到 .gitignore
中的推荐文件列表
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
# AWS User-specific
.idea/**/aws.xml
# Generated files
.idea/**/contentModel.xml
# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
# Gradle
.idea/**/gradle.xml
.idea/**/libraries
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
cmake-build-*/
# Mongo Explorer plugin
.idea/**/mongoSettings.xml
# File-based project format
*.iws
# IntelliJ
out/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Cursive Clojure plugin
.idea/replstate.xml
# SonarLint plugin
.idea/sonarlint/
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
# Editor-based Rest Client
.idea/httpRequests
# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser
如果某些文件仍在 git 上,您应该删除它们然后提交它们。
参考:
https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
是的,当 .idea
文件夹存在且不为空但没有最少需要的文件时的已知问题(不能确定,但我猜 IDE 想看到 workspace.xml
和 *.iml
+ modules.xml
来避免这个问题。
https://youtrack.jetbrains.com/issue/IDEA-271728 -- 观看这张票 (star/vote/comment) 以获得进度通知。
What can you recommend?
遗憾的是,我没有任何重要的建议。我根本没有遇到这样的问题(如果需要可以轻松地手动解决)。
我唯一的建议是:
创建一个没有 .idea
文件夹的新项目。
创建项目后,在 IDE 中将其关闭并覆盖这些文件(一个简单的 copy-paste 就可以了)。
为了让每个团队成员的代码风格保持一致,我们的项目将 PhpStorm 配置文件作为 GIT 的一部分。
条件
VCS 包含 .idea 中的配置文件。文件列表:
codeStyles/codeStyleConfig.xml
sqldialects.xml
inspectionProfiles/Project_defaults.xml
;
问题
- 项目根目录显示为空;
- 索引问题(索引过程永远不会完成)
- 树显示错误(文件在某些目录中未显示,总是“正在加载文件...”)
解决方法
如果我删除整个 .idea
文件夹及其中的文件并且 PhpStorm 重新初始化设置,一切似乎都正常。
有没有人遇到过类似的事情? 你能推荐什么?
您应该忽略所有 user-specific 配置文件。以下是应添加到 .gitignore
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
# AWS User-specific
.idea/**/aws.xml
# Generated files
.idea/**/contentModel.xml
# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
# Gradle
.idea/**/gradle.xml
.idea/**/libraries
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
cmake-build-*/
# Mongo Explorer plugin
.idea/**/mongoSettings.xml
# File-based project format
*.iws
# IntelliJ
out/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Cursive Clojure plugin
.idea/replstate.xml
# SonarLint plugin
.idea/sonarlint/
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
# Editor-based Rest Client
.idea/httpRequests
# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser
如果某些文件仍在 git 上,您应该删除它们然后提交它们。
参考: https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
是的,当 .idea
文件夹存在且不为空但没有最少需要的文件时的已知问题(不能确定,但我猜 IDE 想看到 workspace.xml
和 *.iml
+ modules.xml
来避免这个问题。
https://youtrack.jetbrains.com/issue/IDEA-271728 -- 观看这张票 (star/vote/comment) 以获得进度通知。
What can you recommend?
遗憾的是,我没有任何重要的建议。我根本没有遇到这样的问题(如果需要可以轻松地手动解决)。
我唯一的建议是:
创建一个没有
.idea
文件夹的新项目。创建项目后,在 IDE 中将其关闭并覆盖这些文件(一个简单的 copy-paste 就可以了)。