Menu
Menu

Reputation: 685

"Use command line client" option is not available in Android Studio 3.2.1 for subversion

I have implemented an android project and want to integrate subversion into Android Studio but in setting of subversion I'm not getting the option of "Use command line client" and getting this below error :

Can't use Subversion command line client: svn The path to the Subversion executable is probably wrong

enter image description here

Is there any solution to solve these issue? Please help me out How do I fix it.

Upvotes: 2

Views: 528

Answers (1)

Geno Chen
Geno Chen

Reputation: 5214

Make sure you installed SVN. Note that a pure TortoiseSVN doesn't have SVN command line installed by default. Then

  • Add the directory which can be used to find svn executable into environment variable PATH

or

  • Specify the absolute path of svn executable in your Android Studio settings.

Upvotes: 1

Related Questions