Some checks failed
Deploy to GitHub Pages / Deploy to GitHub Pages (push) Has been cancelled
13 lines
206 B
Bash
13 lines
206 B
Bash
#强制推送
|
|
#!/usr/bin/env bash
|
|
set -e
|
|
git init
|
|
git add -A
|
|
git commit -m '🎉 feat: init project'
|
|
git push -f "https://${access_token}@github.com/zxwk1998/vue-admin-better.git" master
|
|
exec /bin/bash
|
|
|
|
|
|
|
|
|