mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-05 19:41:43 +08:00
13 lines
197 B
Bash
13 lines
197 B
Bash
#强制推送
|
|
#!/usr/bin/env bash
|
|
set -e
|
|
git init
|
|
git add -A
|
|
git commit -m '🎉deploy'
|
|
git push -f "https://${access_token}@github.com/chuzhixin/vue-admin-beautiful.git" master
|
|
exec /bin/bash
|
|
|
|
|
|
|
|
|