What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

TortoiseSVN Silent Update

Kekel

New Member
Joined
Oct 24, 2012
Messages
76
Reaction score
0
Hey buddies,

I've question about TortoiseSVN. I'm using batch file to update all CRs, Plugins etc.

Is there any option to make it silent/backround? So it doesnt everytime popup update window in front of everything?

Now Im using folowing line

TortoiseProc.exe /command:update /path:"%THB%\Bots\Tyrael" /closeonend:2
 
dunno how u do it atm but what i found, and maybe would improve / speed it up a lil bit
Code:
[COLOR=#000000][FONT=Courier New]@echo off[/FONT][/COLOR]
[COLOR=#000000][FONT=Courier New]FOR %%A IN ([/FONT][/COLOR]
[COLOR=#000000][FONT=Courier New]    "E:\home\ozh\wordpress\"[/FONT][/COLOR]
[COLOR=#000000][FONT=Courier New]    "E:\svn\someplugin\"[/FONT][/COLOR]
[COLOR=#000000][FONT=Courier New]    "E:\svn\someproject\"[/FONT][/COLOR]
[COLOR=#000000][FONT=Courier New]) DO START TortoiseProc.exe /command:update /path:%%A /closeonend:1

[/FONT][/COLOR]A few comments:
  • The "FOR %%A" loop will contain, obviously, paths to the projects you want to update.
  • The "START" bit means "start asynchronously, ie don't wait for end of previous task to launch next one" so that all the Update windows will pop up simultaneously.
  • the "/closeonend:1" means, you guessed, "close the Update window once it's done"
 
dunno how u do it atm but what i found, and maybe would improve / speed it up a lil bit
Code:
[COLOR=#000000][FONT=Courier New]@echo off[/FONT][/COLOR]
[COLOR=#000000][FONT=Courier New]FOR %%A IN ([/FONT][/COLOR]
[COLOR=#000000][FONT=Courier New]    "E:\home\ozh\wordpress\"[/FONT][/COLOR]
[COLOR=#000000][FONT=Courier New]    "E:\svn\someplugin\"[/FONT][/COLOR]
[COLOR=#000000][FONT=Courier New]    "E:\svn\someproject\"[/FONT][/COLOR]
[COLOR=#000000][FONT=Courier New]) DO START TortoiseProc.exe /command:update /path:%%A /closeonend:1

[/FONT][/COLOR]A few comments:
  • The "FOR %%A" loop will contain, obviously, paths to the projects you want to update.
  • The "START" bit means "start asynchronously, ie don't wait for end of previous task to launch next one" so that all the Update windows will pop up simultaneously.
  • the "/closeonend:1" means, you guessed, "close the Update window once it's done"

Thank you... this is much better way to update larger number projects.
 
Back
Top