Add Forge

Add Automatic1111-Forge:
https://github.com/lllyasviel/stable-diffusion-webui-forge
This commit is contained in:
theunpleasantowl
2024-11-19 20:28:13 -05:00
parent 802d0bcd68
commit 563eb47d07
5 changed files with 271 additions and 15 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/bash
set -Eeuox pipefail
mkdir -p /repositories/"$1"
cd /repositories/"$1"
git init
git remote add origin "$2"
git fetch origin "$3" --depth=1
git reset --hard "$3"
rm -rf .git