diff --git a/update-kobold.bat b/update-kobold.bat new file mode 100644 index 00000000..cd3bb903 --- /dev/null +++ b/update-kobold.bat @@ -0,0 +1,27 @@ +@echo off +%~d0 +cd %~dp0 +TITLE KoboldAI - Updater +SET /P M=nul +call K:\python\condabin\activate +GOTO GIT + +:GIT +if exist .git\ ( + git checkout -f +) else ( + git init + git remote add origin https://github.com/koboldai/koboldai-client + git fetch + git checkout main -f +) +cmd /k \ No newline at end of file