From b824ce0b33a93cba5da4b263dd599ab04c62b696 Mon Sep 17 00:00:00 2001 From: henk717 Date: Tue, 14 Dec 2021 14:26:04 +0100 Subject: [PATCH] Update Script Updates KoboldAI to the latest official version, if you want to use United you first manually need to be on that git branch otherwise it gets overwritten with the old one. --- update-kobold.bat | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 update-kobold.bat 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