I have created a batch file as below:
set SVNExe = "C:\Program Files\TortoiseSVN\bin\svn.exe"
set SVNURL = "https://server.local/svn/MyProject/"
set CheckOutLocation = "E:\Projects\MyProject"
%SVNExe% checkout %SVNURL% %checkOutLocation%
@pause
When I run this file, I get the following error:
Try svn help checkout for more information.
Not enough arguments provided.
I don't know which arguments are missing as the definition of svn checkout says:
svn checkout URL[@REV]... [PATH]
And per this my syntax is correct.