I was getting annoyed with constantly opening up folder and updating directories.
This command updates SVN's via batch file.
Just make a batch file with that command. Add how ever many you want.
(PS- I feel like there is probably a better and simpler way to have all my directories auto update. I just havent discovered it yet).
Example batch file:
Thanks to mellome for the more practical code.
This command updates SVN's via batch file.
Code:
START TortoiseProc.exe /command:update /path:"**put path here**" /closeonend:1
Just make a batch file with that command. Add how ever many you want.
(PS- I feel like there is probably a better and simpler way to have all my directories auto update. I just havent discovered it yet).
Example batch file:
Code:
@echo off
FOR %%A IN (
"C:\Users\&USER&\HB\- HBRelog"
"C:\Users\&USER&\HB\Routines\TuanHADKSpecialEdition"
"C:\Users\&USER&\HB\Routines\TuanHAHunterSpecialEdition"
"C:\Users\&USER&\HB\Routines\TuanHAMonkSpecialEdition"
"C:\Users\&USER&\HB\Routines\TuanHAPaladinSpecialEdition"
"C:\Users\&USER&\HB\Routines\TuanHARogueSpecialEdition"
"C:\Users\&USER&\HB\Routines\TuanHAShamanSpecialEdition"
"C:\Users\&USER&\HB\Routines\TuanHAWarriorPatronEdition"
"C:\Users\&USER&\HB\Routines\TuanHADruidPublicRelease"
) DO START TortoiseProc.exe /command:update /path:%%A /closeonend:0
Thanks to mellome for the more practical code.
Last edited: