Code Hungry
Code Hungry

Reputation: 4000

SVN Export Command not Working

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.

Upvotes: 2

Views: 4012

Answers (1)

DaveShaw
DaveShaw

Reputation: 52788

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.

Upvotes: 4

Related Questions