How can I not display the dialog in SVN Tortoise Commit?

I have a process that modifies some files, and I would like to commit them using the command line with alternating SVN without clicking ok. A dialog will pop up and my script will keep waiting until I click OK. Here are the arguments I'm using:

TortoiseProc.exe /command:commit /path:"c:\svn\MyProject" /notempfile /logmsg:"Files Modified 2010-02-12" /closeonend:3
+5
source share
2 answers

Like @bmargulies, just use svn.exe:

cd "c:\svn\MyProject"
svn commit -m "Files Modified 2010-02-12"

You cannot hide the TortoiseProc.exe dialog when committing:

Attention!

, TortoiseSVN GUI, , TortoiseSVN . script, , Subversion.

( http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-automation.html)

TortoiseProc/closeonend: 3, , , , SVN.
"0 - , 0 - " Google./p >

+6

svn.exe TortoiseProc.exe. .

+4

All Articles