Reputation: 77
I'm trying to check out my repository using subversion through Intellij. I've installed tortoisesvn on my computer and I have visualsvn installed on a server. I believe I have everything configured somewhat correctly, but I'm getting a error when checking out my repository. What is the reasoning behind this error I'm getting.
Upvotes: 0
Views: 138
Reputation: 77
My VisualSVN was out of date and needed to be updated to the latest version in which solved all my issues.
Upvotes: 0
Reputation: 30662
Your IDE has "C:\Program Files..." recorded somewhere without quotes, so it only recognises the portion of the path till the first whitespace character. Perhaps it looks for the svn.exe executable or something like that. So you need to enclose the path in double quotes.
If my assumption above is correct, this looks like a bug in your IDE (it's worth reporting it to IntelliJ developers).
Since the other error is protocol is disabled or cipher suites are inappropriate
I think that IntelliJ doesn’t support modern TLS versions. Check if you are using the latest version. Or change the TLS/SSL compatibility level to ‘Legacy’ in VisualSVN Server.
Upvotes: 0