[VS Code] VS Code 프로젝트 Github에 올리기, 연동하기
# Back-End/IDE

[VS Code] VS Code 프로젝트 Github에 올리기, 연동하기

 

 

🌸 사전 작업

 

1. VS Code 기본 터미널을 Git Bash로 사용하기

 

kingpiggylab.tistory.com/281

 

[Visual Studio Code] VS Code 기본 터미널을 Git Bash로 설정하기

1. [Ctrl + ,] 명령어로 설정 열기 2. 설정 검색 칸에 terminal.integrated.shell.windows 를 입력 3. 설정에 하단 속성 추가하기 "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash..

kingpiggylab.tistory.com

 

 

 

 

 

🌸 Github에 프로젝트를 올리기

 

😀 방법 ① Github에서 Repository를 생성하고 Remote(원격)을 연결하여 Push하기

 

레포지토리 생성

 

git init

git remote add home https://github.com/자기계정/프로젝트명.git

git pull home master

 

git add .

git commit -m "test commit"

git push home master

 

 

명령어 설명은 kingpiggylab.tistory.com/256 참조

 

 

😀 방법 ② IDE 자체 기능 이용하기

 

 

 

 

 

 

 

728x90