mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-10-07 23:48:48 +08:00
24 lines
407 B
Batchfile
24 lines
407 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
|
|
|
|
echo git pull
|
|
"%GIT_PATH%\git.exe" stash
|
|
"%GIT_PATH%\git.exe" pull https://gitee.com/xxoy/GPT-SoVITS-Inference.git main
|
|
|
|
echo.
|
|
pause
|