-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpush_to_github.bat
More file actions
29 lines (22 loc) · 929 Bytes
/
Copy pathpush_to_github.bat
File metadata and controls
29 lines (22 loc) · 929 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
28
29
@echo off
echo ===================================================
echo Pushing the AI Job Portal to your GitHub...
echo ===================================================
echo 1. Initializing Git Repository...
git init
echo 2. Adding all files...
git add .
echo 3. Committing files...
git commit -m "Initial commit: AI Job Portal Backend and Frontend"
echo 4. Setting main branch...
git branch -M main
echo 5. Linking to your GitHub repository...
git remote add origin https://github.com/nikita827009-source/AI-Powered-job-portal.git
REM In case the remote already exists from a previous attempt:
git remote set-url origin https://github.com/nikita827009-source/AI-Powered-job-portal.git
echo 6. Pushing to GitHub...
git push -u origin main --force
echo ===================================================
echo DONE! Your code should now be live on GitHub!
echo ===================================================
pause