turbo-sync/push.sh
2025-11-20 08:02:54 +01:00

12 lines
114 B
Bash

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