-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy_to_github.bat
More file actions
44 lines (38 loc) · 1.12 KB
/
deploy_to_github.bat
File metadata and controls
44 lines (38 loc) · 1.12 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 LUTHER'S GOLDEN ALGORITHM - GITHUB DEPLOYMENT
echo ========================================
echo.
echo Step 1: Please create GitHub repository first
echo - Go to: https://github.com/new
echo - Repository name: luthers-algorithm-framework
echo - Description: Enhanced NIST-approved post-quantum cryptography framework with advanced features
echo - UNCHECK "Add a README file"
echo - Click "Create repository"
echo.
pause
echo.
echo Step 2: Enter your GitHub username:
set /p username="GitHub Username: "
echo.
echo Connecting to GitHub repository...
git remote add origin https://github.com/%username%/luthers-algorithm-framework.git
echo.
echo Setting main branch...
git branch -M main
echo.
echo Pushing to GitHub...
git push -u origin main
echo.
echo ========================================
echo DEPLOYMENT COMPLETE!
echo ========================================
echo.
echo Verify on GitHub:
echo - Check GitHub Actions CI/CD status
echo - Verify README displays correctly
echo - Confirm all files uploaded
echo.
echo Your Luther's Golden Algorithm is now live!
echo.
pause