This commit is contained in:
douboer
2025-08-15 13:49:02 +08:00
parent 8873c70a60
commit 0bc6844209
76 changed files with 726 additions and 11197 deletions

View File

@@ -1,3 +1,11 @@
#!/bin/bash
# push.sh
# -----------
# 用途一键提交并推送当前目录下所有git更改。
# 用法:
# ./push.sh "commit message"
# # 若不传参数默认commit message为'update'
#!/bin/bash
git add .
msg="${1:-'update'}"