#!/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 main explicitly git push origin main echo "✅ Done!"