Files
core/scripts/assets-push.sh
Innei 7ea1ba5ba9 chore: assets init script
Signed-off-by: Innei <tukon479@gmail.com>
2023-02-13 21:43:14 +08:00

11 lines
197 B
Bash

set -e
cd assets
rm -rf .git
git init
git add .
git commit -m 'update assets'
git remote add origin git@github.com:mx-space/assets.git
git branch -M master
git push -u origin master -f
rm -rf .git