我的 Mac 上的 IntelliJ 遇到了一些低级问题,我真的想将所有内容归零并重新开始。 但即使删除应用程序并重新安装后,IntelliJ 仍然会记住诸如上一个项目是什么、使用什么许可密钥等信息。这些信息存储在哪里? 清除它的最佳方法是什么?
通常可以在 OS X 中的以下位置之一找到此类信息:
/Users/username/Library/Preferences/AppName
/Users/username/Library/Preferences/com.appname.plist
/Users/username/Library/Application Support/AppName
/Library/Preferences/AppName
/Library/Preferences/com.appname.plist
/Library/Application Support/AppName
如果应用程序遵循标准 OS X 约定,您将在其中一个或所有位置找到信息。如果它没有存储在这里,您可以在主目录中检查
/Users/username/.intellij
文件夹或类似的内容
我刚刚浏览过此内容,这是我必须为 IntelliJ 13 删除的文件列表:
~/Library/Preferences/com.jetbrains.intellij.plist
~/Library/Preferences/com.jetbrains.intellij.plist.lockfile
~/Library/Preferences/IntelliJIdea13
~/Library/Caches/IntelliJIdea13
~/Library/Application Support/IntelliJIdea13
~/Library/Caches/com.jetbrains.intellij
~/Library/Logs/IntelliJIdea13
~/Library/Saved Application State/com.jetbrains.intellij.savedState
对于 AppCode (Objective C IDE) 1.0.4,在 OSX 上,路径为: 〜/库/首选项/appCode10
我刚刚检查过,IntelliJ IDEA(至少 9.x 版本)似乎将其全局设置存储在
~/Library/Preferences/IntelliJIdea90CE/
更新:IntelliJ IDEA 10 使用
~Library/Preferences/IntelliJIdea10/
和 12 ~Library/Preferences/IntelliJIdea12/
。无论您使用什么版本,您都可能会找到它。
(其中 ~ 是您的主目录。)
清除它的最佳方法?好吧,删除整个目录即可。 :-) 或者,如果您怀疑那里可能有一些有用的东西,请将其移至新名称。
在终端中运行以下命令以完全删除。为我工作
rm -Rf ~/Library/Preferences/com.jetbrains.intellij.plist
rm -Rf ~/Library/Preferences/com.jetbrains.intellij.plist.lockfile
rm -Rf ~/Library/Caches/com.jetbrains.intellij*
rm -Rf ~/Library/Logs/IntelliJIdea13
rm -Rf ~/Library/Saved Application State/com.jetbrains.intellij.savedState
rm -Rf /Applications/IntelliJ*
rm -Rf ~/Library/Preferences/IntelliJ*
rm -Rf ~/Library/Preferences/com.google.intellij.*
rm -Rf ~/Library/Preferences/com.intellij.*
rm -Rf ~/Library/Application\ Support/IntelliJ*
rm -Rf ~/Library/Logs/IntelliJ*
rm -Rf ~/Library/Caches/IntelliJ*
rm -Rf ~/.IntelliJ*
rm -Rf ~/Library/Intellij*
对于那些使用 2016 年等较新版本的用户,这里有一份指南,告诉您 IntelliJ 可以使用的所有位置:
https://intellij-support.jetbrains.com/hc/en-us/articles/206544519
这总是对我有用:
find ~/Library -type d -name 'IdeaIC*' -exec rm -rf {} ';'
只需使用此存储库,它将删除 Jetbrains 产品在 mac 上的所有配置。
https://github.com/thanhdevapp/jetbrains-reset-Trial-evaluation-mac