Created
June 21, 2018 07:09
-
-
Save aurmil/f14566e3b3cda6faea0bf10706d029ea to your computer and use it in GitHub Desktop.
Update all SVN projects in a folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO off | |
SETLOCAL enabledelayedexpansion | |
SET svnFolders= | |
FOR /D %%G IN ("C:\Users\xyz\Documents\abcd\*") DO ( | |
IF EXIST %%G"\.svn" ( | |
SET svnFolders=!svnFolders!%%G* | |
) | |
) | |
REM echo %svnFolders% | |
START TortoiseProc.exe /command:update /path:%svnFolders% /closeonend:0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment