I am using eclipse to commit my changes to SVN. Now I want to automate few things using Phing, which would do commit with the build process.
Phing code for svn commit is:
<svncommit svnpath="/usr/bin/svn" workingcopy="path/to/my/working/copy" recursive="true" message="my commit message"/>
Above works well on my Linux (ubuntu) machine.
At work, I have to use a Windows box :( and I am not sure what I should be using in svnpath.
Do I need to install any other software? I am not sure if I can use the path of the subversion plugin for eclipse! I don't even know its path.
Can any one please help on this.
Haven't tried to svncommit in phing on windows, but my guess is to download+install tortoiseSVN and use the
svn.exe
insvnpath
.I've used svnexport in phing on Windows before, and that worked fine.