Reputation: 685
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
Is there any solution to solve these issue? Please help me out How do I fix it.
Upvotes: 2
Views: 528
Reputation: 5214
Make sure you installed SVN. Note that a pure TortoiseSVN doesn't have SVN command line installed by default. Then
svn
executable into environment variable PATH
or
svn
executable in your Android Studio settings.Upvotes: 1