Update README.md
Browse files
README.md
CHANGED
|
@@ -83,25 +83,33 @@ Switch to dev branch:
|
|
| 83 |
git switch dev
|
| 84 |
|
| 85 |
webui_installation:
|
| 86 |
-
- step: "
|
| 87 |
-
|
| 88 |
|
| 89 |
-
- step: "Navigate to the WebUI
|
|
|
|
| 90 |
command: |
|
|
|
|
| 91 |
cd stable-diffusion-webui
|
|
|
|
| 92 |
|
| 93 |
-
- step: "Switch to the
|
|
|
|
| 94 |
command: |
|
|
|
|
| 95 |
git switch dev
|
| 96 |
git pull
|
| 97 |
-
|
|
|
|
| 98 |
|
| 99 |
-
- step: "Update WebUI (Main or Dev Branch)
|
|
|
|
| 100 |
command: |
|
|
|
|
| 101 |
git pull
|
| 102 |
-
|
|
|
|
| 103 |
|
| 104 |
-
- step: "Ensure you're using a stable branch, as the dev branch may contain bugs."
|
| 105 |
|
| 106 |
2. **Configuration:** Ensure you're using a stable branch, as the dev branch may contain bugs.
|
| 107 |
|
|
|
|
| 83 |
git switch dev
|
| 84 |
|
| 85 |
webui_installation:
|
| 86 |
+
- step: "**1. Installation**"
|
| 87 |
+
description: "Follow the setup instructions in the [WebUI repository](https://github.com/AUTOMATIC1111/stable-diffusion-webui)."
|
| 88 |
|
| 89 |
+
- step: "**2. Navigate to the WebUI Directory:**"
|
| 90 |
+
description: "Before updating or switching branches, ensure you're inside the `stable-diffusion-webui` folder:"
|
| 91 |
command: |
|
| 92 |
+
```bash
|
| 93 |
cd stable-diffusion-webui
|
| 94 |
+
```
|
| 95 |
|
| 96 |
+
- step: "**3. Switch to the Development Branch (Optional, for testing new features):**"
|
| 97 |
+
description: "If you want to use the latest features from the development branch, run:"
|
| 98 |
command: |
|
| 99 |
+
```bash
|
| 100 |
git switch dev
|
| 101 |
git pull
|
| 102 |
+
```
|
| 103 |
+
note: "⚠️ **Note:** The `dev` branch may contain bugs. If stability is your priority, it's best to stay on the `main` branch."
|
| 104 |
|
| 105 |
+
- step: "**4. Update WebUI (Main or Dev Branch):**"
|
| 106 |
+
description: "To pull the latest updates while on either branch, run:"
|
| 107 |
command: |
|
| 108 |
+
```bash
|
| 109 |
git pull
|
| 110 |
+
```
|
| 111 |
+
note: "🔄 **Restart WebUI after updating to apply changes.**"
|
| 112 |
|
|
|
|
| 113 |
|
| 114 |
2. **Configuration:** Ensure you're using a stable branch, as the dev branch may contain bugs.
|
| 115 |
|