Files
iBook/push.sh
2025-08-12 15:08:32 +08:00

6 lines
85 B
Bash
Executable File

#!/bin/bash
git add .
msg="${1:-'update'}"
git commit -m "$msg"
git push origin main