-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpush_to_github.bat
More file actions
50 lines (49 loc) · 1.63 KB
/
push_to_github.bat
File metadata and controls
50 lines (49 loc) · 1.63 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
47
48
49
50
@echo off
echo.
echo ============================================================
echo NYRA - GitHub Push Instructions
echo ============================================================
echo.
echo ✅ Git initialized and files committed locally!
echo.
echo 📋 NEXT STEPS:
echo ============================================================
echo.
echo 1. Create new GitHub repository:
echo 👉 Go to: https://github.com/new
echo.
echo 2. Fill in details:
echo - Repository name: NYRA-AI
echo - Description: Personal AI Assistant with Voice, Vision ^& Memory
echo - Public or Private (your choice)
echo - ❌ DON'T check "Add README" (we have it)
echo - ❌ DON'T check "Add .gitignore" (we have it)
echo - ❌ DON'T check "Add license" (we have it)
echo.
echo 3. Click "Create repository"
echo.
echo 4. After creating, come back here and run:
echo 📝 git remote set-url origin https://github.com/salahuddingfx/NYRA-AI.git
echo 🚀 git push -u origin main
echo.
echo ============================================================
echo 💡 ALTERNATIVE: Push to existing repo
echo ============================================================
echo.
echo If you already have a repo, run:
echo git remote set-url origin https://github.com/salahuddingfx/YOUR-REPO-NAME.git
echo git push -u origin main
echo.
echo ============================================================
echo.
pause
echo.
echo Opening GitHub new repository page...
start https://github.com/new
echo.
echo After creating the repo, run these commands:
echo.
echo git remote set-url origin https://github.com/salahuddingfx/NYRA-AI.git
echo git push -u origin main
echo.
pause