IntelliJ got out of memory after installing Tortoise SVN 64bit on Windows 7
IntelliJ 8.1 (also tried 9) was working fine without Tortoise SVN, but开发者_运维问答 after I installed Tortoise SVN 64bit on Windows 7, I'm getting out of memory every time I launch IntelliJ.
Increasing VM memory allocation doesn't work no matter how much I increase.
I googled and found few information about this particular issue, has anyone got the same problem?
Had the same problem. Seems it was caused by TortoiseSVN upgrading Subversion working copy format to 1.7 (it asked me to do so), while IDEA is probably only able to work properly with 1.6 (since it's the highest version number it offers me when I checkout a new project). I use IDEA 9.0.2 BTW.
I solved this by checking out the project (using IDEA) into a new folder and not letting TortoiseSVN to upgrade working copy version. If you have any uncommited changes in the old folder you'd probably have to either commit them first via TortoiseSVN and then perform SVN update on the new folder or to copy them into a new directory by hand.
Tortoise SVN installation should not affect IDEA in any way. I have the same configuration (Windows 7, 64-bit, Tortoise SVN) and IDEA works fine. IDEA doesn't use command line SVN, it has Java implementation of SVN protocol via SvnKit library.
The only thing that can somehow affect IDEA is the system wide Subversion configuration file (c:\Users\<user>\AppData\Roaming\Subversion\config
). Check that there are no weird settings in it or try to configure IDEA to use a different Subversion configuration directory.
Also check if this problem is reproducible in IDEA 10.5.x.
Yes... It is causing by SVN... If u checkout the code into a folder and use that folder for intellij, it throws "out of memory" exception. Copy the folder that u checkedout into another folder and try to open the project through that folder.. and it works!!!!! Atleast It worked for me.... Good luck guys..
精彩评论