This commit is contained in:
iwrs
2026-03-25 11:04:49 +08:00
parent d9c5c9f846
commit 4d928479f6
79 changed files with 9424 additions and 1 deletions

12
scripts/commit.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
cd /workspace || exit 1
if [ -z "$1" ]; then
echo "Usage: $0 \"commit message\""
exit 1
fi
git add .
git commit -m "$1"
git push