-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into 173-error-on-train-typeerror-int-argument-mus…
…t-be-a-string-a-bytes-like-object-or-a-real-number-not-nonetype
- Loading branch information
Showing
26 changed files
with
526 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v24.1.6 | ||
v24.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,27 @@ | ||
## Updating a Local Branch with the Latest sd-scripts Changes | ||
## Updating a Local Submodule with the Latest sd-scripts Changes | ||
|
||
To update your local branch with the most recent changes from kohya/sd-scripts, follow these steps: | ||
|
||
1. Add sd-scripts as an alternative remote by executing the following command: | ||
1. When you wish to perform an update of the dev branch, execute the following commands: | ||
|
||
``` | ||
git remote add sd-scripts https://github.com/kohya-ss/sd-scripts.git | ||
``` | ||
|
||
2. When you wish to perform an update, execute the following commands: | ||
|
||
``` | ||
git checkout dev | ||
git pull sd-scripts main | ||
``` | ||
|
||
Alternatively, if you want to obtain the latest code, even if it may be unstable: | ||
|
||
``` | ||
```bash | ||
cd sd-scripts | ||
git fetch | ||
git checkout dev | ||
git pull sd-scripts dev | ||
git pull origin dev | ||
cd .. | ||
git add sd-scripts | ||
git commit -m "Update sd-scripts submodule to the latest on dev" | ||
``` | ||
|
||
3. If you encounter a conflict with the Readme file, you can resolve it by taking the following steps: | ||
Alternatively, if you want to obtain the latest code from main: | ||
|
||
```bash | ||
cd sd-scripts | ||
git fetch | ||
git checkout main | ||
git pull origin main | ||
cd .. | ||
git add sd-scripts | ||
git commit -m "Update sd-scripts submodule to the latest on main" | ||
``` | ||
git add README.md | ||
git merge --continue | ||
``` | ||
|
||
This may open a text editor for a commit message, but you can simply save and close it to proceed. Following these steps should resolve the conflict. If you encounter additional merge conflicts, consider them as valuable learning opportunities for personal growth. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.