I have a process that modifies some files and I would like to commit them via command line tortoise SVN without having to click ok. The dialog comes up and my script is forced to wait until I click ok. Here are the arguments I am using:
TortoiseProc.exe /command:commit /path:"c:\svn\MyProject" /notempfile /logmsg:"Files Modified 2010-02-12" /closeonend:3
Like @bmargulies said, just use
svn.exe:You cannot hide the TortoiseProc.exe dialog on commit:
If you’re relying on TortoiseProc’s /closeonend:3 behavior to alert you when there’s an error, conflict, or merge, you’ll need to switch on SVN’s exit codes.
I couldn’t find a list of return code values beyond "0 is success, not 0 is error" in a quick Google search, though.