-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate-github.bat
More file actions
46 lines (39 loc) · 1.16 KB
/
Copy pathupdate-github.bat
File metadata and controls
46 lines (39 loc) · 1.16 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
@echo off
echo ========================================
echo Updating GitHub with Fixes
echo ========================================
echo.
cd d:\Akinator
echo Adding updated files...
git add .
echo Creating commit...
git commit -m "Fix: Update game flow and add comprehensive setup scripts
- Fixed backend to return first question on game start
- Fixed frontend to handle first question properly
- Added start-complete.bat for full automated setup
- Added test-system.bat to verify installation
- Added SETUP_AND_RUN.md with detailed instructions
- Added QUICK_RUN.md for quick reference
- Improved error handling and user experience"
echo Pushing to GitHub...
git push
if %ERRORLEVEL% EQU 0 (
echo.
echo ========================================
echo SUCCESS!
echo ========================================
echo.
echo Changes pushed to GitHub!
echo Visit: https://github.com/Varadha9/Akinator
echo.
) else (
echo.
echo ========================================
echo PUSH FAILED
echo ========================================
echo.
echo Please check your internet connection
echo and GitHub credentials.
echo.
)
pause