-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit_git.bat
More file actions
44 lines (38 loc) · 1.02 KB
/
Copy pathinit_git.bat
File metadata and controls
44 lines (38 loc) · 1.02 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
@echo off
echo ========================================
echo 初始化Git仓库并上传到GitHub
echo ========================================
echo.
echo 正在初始化Git仓库...
git init
echo.
echo 正在添加所有文件...
git add .
echo.
echo 正在提交初始版本...
git commit -m "EduAdmin Subjective Evaluation System - Complete Implementation
Features:
- BCHS + REWT + CAMF algorithm implementation
- Multi-language support (Chinese/English)
- Complete API documentation
- Interactive demo service
- Frontend interface design
- Docker configuration
- Comprehensive documentation
Ready for production deployment!"
echo.
echo ========================================
echo Git仓库初始化完成!
echo ========================================
echo.
echo 下一步操作:
echo 1. 在GitHub创建新仓库
echo 2. 复制仓库URL
echo 3. 运行以下命令:
echo git remote add origin YOUR_REPO_URL
echo git branch -M main
echo git push -u origin main
echo.
echo 或者直接运行: init_git_upload.bat
echo.
pause