I was wondering if I could make a batch script where the user enters what version of software they would want to run, and then through tortoise svn, the software would "update to revision" and run that user entered version. I'm really new to writing batch files but this is what I have so far.... it's kind of a mash-up between a bunch of things I found online so it probably doesn't make any sense. please help :'(
@echo off
echo.
echo. [ SVN Version Control ]
pause
set SOURCE=C:\Users\bradyka1\Desktop\software
set /p Version=Enter The Version Number: %=%
set SVN=C:\Program Files\TortoiseSVN\bin
echo.
echo. Updating %SOURCE% to SVN...
"%SVN%\TortoiseProc.exe" /command:revision: "%Version%" /path /closeonend:2
echo. done.