Files
devops/rungit.sh
douboer 0c382a28b9 new
2025-09-17 17:16:25 +08:00

20 lines
321 B
Bash
Executable File

#!/bin/bash
# 自动添加所有修改
git add .
# 如果没有提交信息,默认用时间戳
msg="update at $(date '+%Y-%m-%d %H:%M:%S')"
# 支持自定义提交信息:./run.sh "your message"
if [ $# -gt 0 ]; then
msg="$*"
fi
# 提交
git commit -m "$msg"
# 推送到远程 main 分支
git push origin main