Replace update with switch
My idea to checkout the used branch failed making the updater obsolete, rebranded the switcher to the updater.
This commit is contained in:
parent
c701fdce1d
commit
cb98462b02
|
@ -1,40 +0,0 @@
|
||||||
@echo off
|
|
||||||
%~d0
|
|
||||||
cd %~dp0
|
|
||||||
TITLE KoboldAI - Branch Switcher
|
|
||||||
SET /P M=<loader.settings
|
|
||||||
IF %M%==1 GOTO drivemap
|
|
||||||
IF %M%==2 GOTO subfolder
|
|
||||||
|
|
||||||
:subfolder
|
|
||||||
call miniconda3\condabin\activate
|
|
||||||
GOTO GIT
|
|
||||||
|
|
||||||
:drivemap
|
|
||||||
subst K: miniconda3 >nul
|
|
||||||
call K:\python\condabin\activate
|
|
||||||
GOTO GIT
|
|
||||||
|
|
||||||
:GIT
|
|
||||||
ECHO 1. KoboldAI Main (The Official stable version of KoboldAI)
|
|
||||||
ECHO 2. KoboldAI United (Development Version, new features but may break at any time)
|
|
||||||
SET /P V=Enter your desired version or type your own GIT URL:
|
|
||||||
IF %V%==1 (
|
|
||||||
SET origin=https://github.com/koboldai/koboldai-client
|
|
||||||
SET branch=main
|
|
||||||
) ELSE (
|
|
||||||
IF %V%==2 (
|
|
||||||
SET origin=https://github.com/henk717/koboldai
|
|
||||||
SET branch=united
|
|
||||||
) ELSE (
|
|
||||||
SET origin=%v%
|
|
||||||
SET /P branch=Specify the GIT Branch:
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
git init
|
|
||||||
git remote remove origin
|
|
||||||
git remote add origin %origin%
|
|
||||||
git fetch
|
|
||||||
git checkout %branch% -f
|
|
||||||
cmd /k
|
|
|
@ -16,13 +16,25 @@ call K:\python\condabin\activate
|
||||||
GOTO GIT
|
GOTO GIT
|
||||||
|
|
||||||
:GIT
|
:GIT
|
||||||
if exist .git\ (
|
ECHO 1. KoboldAI Main (The Official stable version of KoboldAI)
|
||||||
git fetch
|
ECHO 2. KoboldAI United (Development Version, new features but may break at any time)
|
||||||
git checkout -f
|
SET /P V=Enter your desired version or type your own GIT URL:
|
||||||
) else (
|
IF %V%==1 (
|
||||||
git init
|
SET origin=https://github.com/koboldai/koboldai-client
|
||||||
git remote add origin https://github.com/koboldai/koboldai-client
|
SET branch=main
|
||||||
git fetch
|
) ELSE (
|
||||||
git checkout main -f
|
IF %V%==2 (
|
||||||
|
SET origin=https://github.com/henk717/koboldai
|
||||||
|
SET branch=united
|
||||||
|
) ELSE (
|
||||||
|
SET origin=%v%
|
||||||
|
SET /P branch=Specify the GIT Branch:
|
||||||
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
git init
|
||||||
|
git remote remove origin
|
||||||
|
git remote add origin %origin%
|
||||||
|
git fetch
|
||||||
|
git checkout %branch% -f
|
||||||
cmd /k
|
cmd /k
|
Loading…
Reference in New Issue