From c955b81fdf24d4049dacbab064253c9c44f4c3e8 Mon Sep 17 00:00:00 2001 From: AUTOMATIC1111 <16777216c@gmail.com> Date: Mon, 4 Dec 2023 09:54:27 +0300 Subject: [PATCH] Created How to switch to different versions of WebUI (markdown) --- ...o-switch-to-different-versions-of-WebUI.md | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 How-to-switch-to-different-versions-of-WebUI.md diff --git a/How-to-switch-to-different-versions-of-WebUI.md b/How-to-switch-to-different-versions-of-WebUI.md new file mode 100644 index 0000000..bbf6324 --- /dev/null +++ b/How-to-switch-to-different-versions-of-WebUI.md @@ -0,0 +1,27 @@ +# Release candidate +Release candidate is a version that will soon be released as a new major version. For example, before 1.7.0 is released, there is 1.7.0-RC version, which is a release candidate - it has all new features and is available for testing. + +### How to switch existing installation to release candidate +Run those commands in webui directory: + +``` +git switch release_candidate +git pull +``` + +### How to switch back to stable version in master branch: +Run those commands in webui directory: +``` +git switch master +``` + +### How to get release candidate in a new webui installation + +Run those commands (this will create a directory called `webuirc` - you can use a different name, and you can also rename the directory afterwards): + +``` +git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git webuirc +cd webuirc +git switch release_candidate +``` +