Skip to content
Evaldas Jocys edited this page Apr 5, 2019 · 5 revisions

How to checkout Solution and Wiki pages as SVN:

  1. Create Folder C:\Projects\x360ce
  2. Create x360ce_clone_as_SVN.bat file inside this folder with this content:
::-------------------------------------------------------------
:: Checkout project as SVN
::-------------------------------------------------------------
SET company=x360ce
SET solution=x360ce
::-------------------------------------------------------------
SET prg="%ProgramFiles%\TortoiseSVN\bin\svn.exe"
IF NOT EXIST %prg% SET prg="%ProgramFiles(x86)%\TortoiseSVN\bin\svn.exe"
IF NOT EXIST %prg% SET prg="%ProgramW6432%\TortoiseSVN\bin\svn.exe"
:: Checkout Solution.
%prg% checkout https://github.com/%company%/%solution%.git/trunk ".\%solution%"
:: Checkout WIKI pages.
%prg% checkout https://github.com/%company%/%solution%.wiki.git/trunk "%solution%.wiki"
:: Checkout Externals.
%prg% checkout https://github.com/TsudaKageyu/minhook.git/trunk "%solution%\MinHook"
PAUSE
  1. Start x360ce_clone_as_SVN.bat file.
Clone this wiki locally