mirror of
https://github.com/labring/laf.git
synced 2025-12-08 20:26:22 +00:00
15 lines
180 B
Bash
15 lines
180 B
Bash
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
cd ./.vitepress/dist
|
|
rm -rf .git
|
|
git init
|
|
git add -A
|
|
git commit -m "deploy"
|
|
|
|
git push -f git@github.com:lafjs/lafjs.github.io.git main
|
|
|
|
rm -rf .git
|
|
|
|
cd - |