mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-10-07 23:48:48 +08:00
25 lines
547 B
Batchfile
25 lines
547 B
Batchfile
CHCP 65001
|
|
@echo off
|
|
setlocal
|
|
|
|
|
|
echo Set the local repo path
|
|
set REPO_PATH=../
|
|
|
|
echo cd to the local repo path
|
|
cd /d %REPO_PATH%
|
|
|
|
echo setting the PortableGit path
|
|
set GIT_PATH=PortableGit/bin
|
|
|
|
|
|
echo Update submodule
|
|
"%GIT_PATH%\git.exe" submodule update --init --recursive
|
|
"%GIT_PATH%\git.exe" submodule foreach --recursive "git fetch origin plug_in && git reset --hard origin/plug_in"
|
|
|
|
echo git reset --hard
|
|
"%GIT_PATH%\git.exe" fetch https://gitee.com/xxoy/GPT-SoVITS-Inference.git main
|
|
"%GIT_PATH%\git.exe" reset --hard FETCH_HEAD
|
|
|
|
echo.
|
|
pause |