Files
musadaq-saas/push.sh
2026-05-03 17:32:57 +03:00

19 lines
286 B
Bash
Executable File

#!/bin/bash
# Get current timestamp
TIMESTAMP=$(date "+%Y-%m-%d %H:%M:%S")
echo "🚀 Starting Git Push Process..."
echo "📅 Timestamp: $TIMESTAMP"
# Add all changes
git add .
# Commit with timestamp
git commit -m "Update: $TIMESTAMP"
# Push to origin
git push
echo "✅ Done!"