0

I am using PhpStorm and a Visual SVN repository. I have been able to create branches from trunk projects before, but recently when I try to create a branch on an up-to-date project, I recieve this error:

Error:svn: E175002: Processing OPTIONS request response failed: Premature end of file. (/svn) svn: E175002: OPTIONS request failed on '/svn'

Other members on my team are able to create branches from the same project I am trying to create a branch from without problem.

Any help is appreciated!

H.E.
  • 27
  • 1
  • 6

1 Answers1

1

Seems like some issue of the SVNKit. Try enabling integration via a command-line client in Settings - Version control - Subversion - General.

The issue seems to be related to invalid response received from the server. Could be caused by proxy if you use one.

bahrep
  • 29,961
  • 12
  • 103
  • 150
Dmitrii Smirnov
  • 7,073
  • 1
  • 19
  • 29
  • Would I need to download a command-line client to be able to use this option? We would like to be able to do all of our SVN work with the PhpStorm svn bundle – H.E. Oct 10 '17 at 13:49
  • Yes, to integrate via command-line client you need to download one. – Dmitrii Smirnov Oct 10 '17 at 14:20
  • Will I be able to fix this problem without using a command-line client? – H.E. Oct 10 '17 at 14:38
  • Switching the integration component to the command-line client from SVNKit java library is not the same as using the client from command prompt. Just try it. – bahrep Oct 12 '17 at 10:04
  • I have done this with TortoiseSVN. Now, I am recieving an error saying working copy for file can not be found even though I have my working copy open. – H.E. Oct 12 '17 at 14:31
  • I also checked out the trunk of a project using the Tortoise SVN client through PhpStorm, then tried to create a branch and received the same error that I was originally seeing. – H.E. Oct 12 '17 at 14:58
  • enable debug logs by adding `#org.jetbrains.idea.svn` to Help - Debug Log settings... and check the logs for an exact command that is failing. Then you could test it via command-line client to see what exactly is wrong – Dmitrii Smirnov Oct 12 '17 at 19:05