Intellij 14 can't control demolition

Since upgrading from Intellij 13 to Intellij 14, I cannot check with subversion, since I can view the repository. I received this message:

Cannot start the program "svn" (in the directory "..."): CreateProcess error = 2, the system cannot find the specified file

I had the same error before Intellij 13, and the solution was to uncheck the Use command line client checkbox in File/Settings/Version Control/Subversion . So I check this option, but it has already unchecked the box. Any idea?

+7
intellij-idea svn
source share
3 answers

To solve this problem:

  • Open the settings here File/Settings/Version Control/Subversion
  • Check the option Use command line client .
  • Close the panel.
  • Receive a new warning from IntelliJ about using subversion with the command line.
  • Cancel the settings here File/Settings/Version Control/Subversion
  • Uncheck the "Use command line client."
  • Close the panel.
  • Try to check ...

... and then it worked. I think this was the default setting in the configuration.

+12
source share

This happened to me after the update. There seem to be two options for this: one in the active project and one by default on the "Welcome to IntelliJ IDEA" screen.

To fix this, click:

  • "Customize" gear icon in the lower right.
  • "Settings" from the popup
  • "Versioning" from the list on the left
  • "Subversion" and then select the "Use command line client" checkbox

This checkbox is different from the checkbox in File> Preferences, so unchecking the box fixes the problem.

+3
source share

Follow these steps: Studio-> Settings-> Subversion-> Uncheck "Use command line client".

0
source share

All Articles