11 lines
182 B
Bash
Executable File
11 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
# 提交並推送到所有遠端服務器
|
|
|
|
git add .
|
|
git commit -m "$1"
|
|
git push origin
|
|
git push gitea
|
|
git push gitea2
|
|
|
|
echo "✓ 已推送到 origin, gitea, 和 gitea2"
|