mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-06 03:58:00 +08:00
13 lines
207 B
Bash
13 lines
207 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/chuzhixin/vue-admin-better.git" master
|
|
exec /bin/bash
|
|
|
|
|
|
|
|
|