mirror of
https://gitee.com/chu1204505056/vue-admin-beautiful.git
synced 2025-04-05 05:42:45 +08:00
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
|
|
|
|
|
|
|
|
|