mirror of
https://github.com/rdk/p2rank.git
synced 2026-06-04 12:44:24 +08:00
10 lines
103 B
Bash
10 lines
103 B
Bash
#!/bin/bash
|
|
|
|
MSG="$1"
|
|
if [[ -z "$1" ]]; then
|
|
MSG="update" # default message
|
|
fi
|
|
|
|
|
|
git commit -m "$MSG"
|