rvc_api / update.bat
aryo100's picture
first commit
b5a064f
raw
history blame contribute delete
235 Bytes
@echo off
if exist ".git" (
git fetch --prune
git reset --hard origin/main
) else (
git init
git remote add origin https://github.com/ddPn08/rvc-webui.git
git fetch --prune
git reset --hard origin/main
)
pause