forked from Shruti070107/ReGenX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpush.bat
More file actions
27 lines (22 loc) · 643 Bytes
/
Copy pathpush.bat
File metadata and controls
27 lines (22 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@echo off
echo ============================================
echo ReGenX - Git Push to GitHub
echo ============================================
cd /d "C:\Users\shrut\OneDrive\Desktop\ReGenX"
echo.
echo [1/4] Staging all changes...
git add -A
echo.
echo [2/4] Current status:
git status
echo.
echo [3/4] Committing...
git commit -m "feat: Add optimised IoT Sensory Bin dashboard with live simulation engine"
echo.
echo [4/4] Pushing to GitHub (main branch)...
git push origin main
echo.
echo ============================================
echo Done! Check GitHub to confirm the push.
echo ============================================
pause