I am using a plugin for redmine called redmine checkout which gives us the option to view the code in svn repository in the redmine. Now I need to add a button which would checkout all the code in that particular project and download it to my local machine.
So I have created a batch file, its something like this:
@echo off
echo.
echo. [ SVN Updater ]
set SVNURL=%1
set SOURCE=C:\Users\
set SVN=C:\Program Files\TortoiseSVN\bin
echo.
echo. Updating %SOURCE% to SVN...
"%SVN%\TortoiseProc.exe" /command:checkout /path:"%SOURCE%" /url:%SVNURL% /closeonend:2
echo. done.
echo.
echo. Operation complete.
This batch file performs a checkout of the code to my local machine. Now, I need to run this batch file in my redmine application. Can you please tell me where and how to run this batch file. I am a newbie.
Thank you very much in advance.