TortoiseSVN command keeps open processes

后端 未结 1 1483
长发绾君心
长发绾君心 2021-01-29 07:49

I am using a scheduled task to run a .bat script which updates my SVN repositories.

The scheduled task runs every hour. It still creating a new process of \"TortoisePr

相关标签:
1条回答
  • 2021-01-29 08:29

    Don't use tortoiseproc for unattended/non-interactive scripting (automation) - use svn.exe instead, which is shipped with TortoiseSVN.

    CD C:\Program Files\TortoiseSVN\bin\
    svn update "D:\somePath"
    svn update "D:\somePath"
    
    0 讨论(0)
提交回复
热议问题