add new features like realtime 2026-05-11-19

This commit is contained in:
Hamza-Ayed
2026-05-11 19:00:23 +03:00
parent f22d9f6c74
commit 5a4c21cbde
2 changed files with 145 additions and 167 deletions

17
git_push.sh Normal file
View File

@@ -0,0 +1,17 @@
#!/bin/zsh
# الحصول على التاريخ الحالي
CURRENT_DATE=$(date +"%Y-%m-%d-%H")
echo "--- 🚀 Starting Deployment ($CURRENT_DATE) ---"
# إضافة جميع الملفات
git add .
# تنفيذ الكوميت مع التاريخ
git commit -m "add new features like realtime $CURRENT_DATE"
# الرفع إلى السيرفر
git push myserver main
echo "--- ✅ Done ---"