In IntelliJ on OS X, how do you clear out all global setting info, licensing etc. (external to any project)

后端 未结 7 2133
没有蜡笔的小新
没有蜡笔的小新 2020-12-07 09:07

I am having some low level issues with IntelliJ on my mac, I really want to just zero everything out and start over. But even after removing the application and re-installi

相关标签:
7条回答
  • 2020-12-07 09:32

    For those with newer versions like 2016, here's a guide to tell you all the places where IntelliJ can be at:

    https://intellij-support.jetbrains.com/hc/en-us/articles/206544519

    0 讨论(0)
  • 2020-12-07 09:43

    For AppCode (Objective C IDE) 1.0.4, on OSX, the path is: ~/Library/Preferences/appCode10

    0 讨论(0)
  • 2020-12-07 09:46

    Normally information like this will be found in one of the following places in 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

    If the app adheres to the standard OS X conventions you weill find info in one or all of these places. If it doesnt store here you might check for a /Users/username/.intellij folder or something similar in your home directory

    0 讨论(0)
  • 2020-12-07 09:51

    I just checked, and IntelliJ IDEA (at least 9.x versions) seems to store its global settings in ~/Library/Preferences/IntelliJIdea90CE/

    Update: IntelliJ IDEA 10 uses ~Library/Preferences/IntelliJIdea10/ and 12 ~Library/Preferences/IntelliJIdea12/. You'll probably find it for whatever version you're on.

    (Where ~ is your home directory.)

    Best way to clear it? Well, just delete the whole directory. :-) Or, if you suspect there might be something useful there after all, move it to a new name.

    0 讨论(0)
  • 2020-12-07 09:55

    I just ran through this and here is the list of files that I had to delete for 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
    
    0 讨论(0)
  • 2020-12-07 09:56

    run the following commands in terminal to remove completely. worked for me

    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*  
    
    0 讨论(0)
提交回复
热议问题