firstcommit

This commit is contained in:
douboer
2025-09-18 13:58:51 +08:00
parent 590a962d88
commit 1d0f781977
78 changed files with 35623 additions and 0 deletions

20
run.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/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