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