19 lines
286 B
Bash
Executable File
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!"
|