rvc_webui / update.sh
aryo100's picture
first commit
2b7fad2
raw
history blame contribute delete
186 Bytes
#!/bin/bash
if [ -d .git ]; then
git fetch --prune
git reset --hard origin/main
else
git init
git remote add origin
git fetch --prune
git reset --hard origin/main