mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-12-29 19:05:05 +08:00
Created How to switch to different versions of WebUI (markdown)
parent
c633950db4
commit
c955b81fdf
27
How-to-switch-to-different-versions-of-WebUI.md
Normal file
27
How-to-switch-to-different-versions-of-WebUI.md
Normal file
@ -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
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user