views:

206

answers:

1

I am new to tortoise svn, can any one tell how to automate tortoisesvn's commit process using CruiseControl.NET . My attempt to do that results in an exception being thrown.

My main concern is to auto close the window that pops up when we execute the command

"tortoiseproc /command: commit /path:"**********PATH********* /logmsg:
"log msg" /closeonend:1"
+3  A: 

You shouldn't use GUI tool for batch scripts. Subversion have packages for Windows that will give you powerful svn command. And you'll be able to do svn commit -m "log msg" without any windows popping up.

vava