Sha256: 277b5a5c04780ba95942153941435b63a13e6183f21773c852c962ac492dcda9
Contents?: true
Size: 528 Bytes
Versions: 25
Compression:
Stored size: 528 Bytes
Contents
@echo off SET DEVFOLDER=C:\CODE\ SET REPOSITORIES=http://somewhere.com/svn/ SET TRUNK=trunk if '%1' == '' goto usage if '%2' NEQ '' goto usage if '%3' NEQ '' goto usage if '%1' == '/?' goto usage if '%1' == '-?' goto usage if '%1' == '?' goto usage if '%1' == '/help' goto usage svn co %REPOSITORIES%%1/%TRUNK%/ "%DEVFOLDER%\%1" if %ERRORLEVEL% NEQ 0 goto usage goto finish :usage echo. echo Usage: checkoutTrunk.bat repositoryName echo Example checkoutTrunk.bat Bob echo. goto finish :finish
Version data entries
25 entries across 25 versions & 1 rubygems