Question

I run some scheduled tasks for svn on my local computer like: update. Sometimes update cannot run for cleanup problem, so I have add scheduled task for cleanup, but it cannot run without my intervention: always dispalys dialog:

enter image description here

How to non display this dialog? Really I change nothing - only click button ok.

Thanks.

Was it helpful?

Solution 2

TortoiseSVN doesn't seem to be a good tool for automation.

Consider using command line svn:

svn cleanup

will do what you need

OTHER TIPS

A quick look at the docs help:

Use /noui to prevent the result dialog from popping up (either telling about the cleanup being finished or showing an error message). /noprogressui also disables the progress dialog. /nodlg disables showing the cleanup dialog where the user can choose what exactly should be done in the cleanup. The available actions can be specified with the options /cleanup for status cleanup, /revert, /delunversioned, /delignored, /refreshshell and /externals.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top