mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2024-11-26 09:23:06 +03:00
12 lines
186 B
Bash
12 lines
186 B
Bash
|
#!/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
|