Files
blackroad-dashboard/.git-auto-commit.sh
2026-01-27 19:35:13 -06:00

5 lines
176 B
Bash
Executable File

#!/bin/bash
MESSAGE="${1:-Auto-commit: $(date +%Y-%m-%d\ %H:%M:%S)}"
git add -A && git commit -m "$MESSAGE" && git push 2>/dev/null || echo "⚠ Check remote"
echo "✅ Done!"