본문 바로가기

Dev/Javascript

[nodejs] vscode git 연동

728x90

1. 원격 저장소 생성

 

 

과거와 다르게 default branch의 이름이 main 인점에 주목하자. 

2. 원격 저장소 지정

git remote add origin [ 복사한 저장소 주소 ]

 

 

PS E:\nodejs> git remote add origin https://...

 

3. 원격 저장소에 있는 내용을 현재 디렉토리로 pull

git pull origin main --allow-unrelated-histories

 

과거는 default branch 이름이 master여서 main 대신 master 를 적어줬다. 

PS E:\nodejs> git pull origin main --allow-unrelated-histories
remote: Enumerating objects: 773, done.
remote: Counting objects: 100% (773/773), done.
remote: Compressing objects: 100% (578/578), done.
Receiving objects: 100% (773/773), 1.99 MiB | 113.00 KiB/s, done.d 0 (from 0)

Resolving deltas: 100% (158/158), done.
From https://github.com/EunjungSong87/nodejs
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main

 

 

4.  로컬 저장소에 push한 내용을 원격 저장소에 반영

git push -u origin main

 

 

728x90
반응형