🌸 사전 작업
1. VS Code 기본 터미널을 Git Bash로 사용하기
🌸 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
'# Back-End > IDE' 카테고리의 다른 글
Finder에서 iterms2 바로 열기 (0) | 2023.08.03 |
---|---|
[InteliJ] 인텔리제이 설정 백업 (2) | 2023.04.15 |
[VS Code] VS Code 기본 터미널을 Git Bash로 설정하기 (0) | 2021.01.21 |