I am working on batchscripting which will checkout the folder by using svn and in some what i get success, and here is the code for this
@echo off
echo.
echo. [ SVN Updater ]
set SOURCE=C:\Documents and Settings\himanshu.jain\Desktop\checkout
set SVN=C:\Program Files\TortoiseSVN\bin
echo.
echo. Updating %SOURCE% to SVN...
"%SVN%\TortoiseProc.exe" /command:checkout /path:"%SOURCE%" /closeonend:2
echo. done.
echo.
echo. Operation complete.
But here I am getting a problem and i am trap in this that,i am able to give to the path on which the stuff will be checked out but don't know how can I pass the SVN url in this batchscript......