转自:https://blogs.oracle.com/arungupta/entry/totd_149_how_to_clean
I've installed, un-installed, re-installed, re-un-installed, re-re-installed and so on IntelliJ IDEA multiple times on my MacBook. However the uninstall leaves a few remnants in different directories all over the system. These directories need to be manually removed in order for a clean install next time. This TOTD (Tip Of The Day) provide the list of directories which need to be removed explicitly:
~/Library/Caches/IntelliJIdea90
~/Library/Logs/IntelliJIdea90
~/Library/Preferences/IntelliJIdea90
~//Library/Application Support/IntelliJIdea90
And IntelliJ IDEA is installed in the directory "/Application/IntelliJIdea90" which gets deleted if the application is deleted. And you'll need to get rid of this directory if the mystical plugin configuration is not configured right the first time.
Also read IDEA-43039 for more details on invalidating caches. Read more on stackoverflow.com on how to clear out global settings.
That's it, just a short one this time!
Is there a better way to deal with this mess ?
分享到:
相关推荐
清除日志数据的命令是`rm -r ~/Library/Logs/IntelliJIdea{指定版本}`。 6. **删除其他相关文件**: 还有一些用户特定的配置文件存在于`~/.IntelliJIdea{指定版本}/`,执行`rm -r`命令来删除它们。 7. **删除设置...
可以尝试清除IDEA缓存,重启IDEA,有时可以解决问题。 6. 如果上述步骤都无法解决,可以考虑重新安装IDEA或者在不同的项目上测试SVN插件,以确定问题是否与特定项目设置有关。 除了上述常见解决方案之外,还可能...
关闭IDEA,然后找到IDEA的工作目录,通常在用户的家目录下的`.IntelliJIdea`(macOS/Linux)或`%USERPROFILE%\.IntelliJIdea`(Windows)。进入`system`子目录,找到`caches`文件夹,将其删除。重新启动IDEA,它会...
5. **清理IDEA缓存**:有时候,IDEA的内部缓存可能会导致问题。在`File` -> `Invalidate Caches / Restart`中清除缓存并重启IDEA,看是否能解决问题。 6. **更新或重新配置IDEA插件**:如果问题依然存在,检查IDEA...
2. 清除IDEA缓存:在IDEA安装目录的`.idea`文件夹下,找到`system`目录,删除`caches`、`workspace`和`system`子目录,然后重新启动IDEA,这有助于消除可能存在的配置问题。 3. 修复IDEA配置:如果IDEA的配置文件...
同时,检查网络连接、清理IDEA缓存、更新IDEA版本以及手动下载插件都是有效的辅助手段。在日常开发中,遇到类似问题时,可以根据具体情况采取相应的解决措施。希望这些信息能对你的学习和工作带来帮助。
- 清除IDEA缓存:在设置中选择“Appearance & Behavior”(外观与行为),然后点击“System Settings”(系统设置),再选择“Update & Startup”(更新与启动),最后点击“Clear caches and restart”(清除缓存...
1. 清除IDEA缓存:`File` -> `Invalidate Caches / Restart`,这将清除IDEA的本地缓存并重启IDEA,有时可以解决依赖加载问题。 2. 清理Maven本地仓库:删除`.m2\repository`目录下的对应项目,然后执行“reimport”...
后者不仅执行垃圾收集,还会清除IDEA的缓存并重启IDE,这对于解决因缓存问题导致的性能问题很有帮助。 理解内存使用情况和适时进行内存回收对于开发过程至关重要,尤其是当处理大型项目或长时间运行的任务时。定期...
3. **清理许可证文件**:查找并删除与JetBrains IDE相关的许可证文件,这通常位于`~/.IntelliJIdea*/config/options`或`%USERPROFILE%\.IntelliJIdea*`目录下。 4. **清理缓存**:删除`~/.cache/JetBrains`或`%APP...
在Idea中,执行`Build` -> `Clean Project`,清除编译缓存,然后再执行`Build` -> `Rebuild Project`来重新构建整个项目,这有时候能解决一些临时性的编译问题。 7. **更新或重装IDEA**: 如果上述方法都无法解决...
- 解决`.gitignore`不生效的问题,通过`git rm -r --cached .`清除缓存,然后重新提交。 3. **Git操作**: - 使用`git add .`将文件添加到暂存区,`git commit -am '提交信息'`提交到本地仓库。 - 将远程仓库...