mirror of
https://github.com/rdk/p2rank.git
synced 2026-06-04 20:54:23 +08:00
10 lines
111 B
Bash
Executable File
10 lines
111 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
MSG="$1"
|
|
if [[ -z "$1" ]]; then
|
|
MSG="update" # default message
|
|
fi
|
|
|
|
|
|
git commit -m "$MSG"
|