2

I am Using Cygwin, I want to Do SVN export I am using Following Command.

svn export http://SVNpath D:\Test -r 10 --username svntest --password svntest --force --non-interactive

It works Fine. But If there is Space in D:\Test Folder

svn: E205000: Try 'svn help' for more info
svn: E205000: Error parsing arguments

Does I Need to replace Space with %20.

Please Guide me.

1
  • try using quotes around the path but I'm not surprised that paths with spaces produce problems ... you should avoid them in general, e.g. use dashes/underscores instead Commented Apr 11, 2012 at 11:35

1 Answer 1

4

If a path contains spaces you must surround them in Quotes:

svn export http://SVNpath "D:\Test Folder" -r 10 --username svntest --password svntest --force --non-interactive

If you don't then it thinks D:\Test is one argument and Folder is another.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.