less-watcher/push.sh

12 lines
114 B
Bash
Raw Normal View History

2025-01-16 06:21:31 +00:00
#!/bin/bash
if [ -z "$1" ]; then
msg="Updates"
else
msg="$1"
fi
git add .
git commit -m "$msg"
git push