nodecid/push.sh
Benjamin Toby c09409e182 Updates
2025-01-16 06:31:09 +01:00

12 lines
114 B
Bash
Executable File

#!/bin/bash
if [ -z "$1" ]; then
msg="Updates"
else
msg="$1"
fi
git add .
git commit -m "$msg"
git push