Files
p2rank/misc/dev-scripts/commit.sh
2024-11-04 06:57:17 +01:00

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"