로컬컴퓨터와 github연결(push, pull)
로컬 컴퓨터 폴더에 github 연결 & pull
-
원하는 로컬 위치에 폴더 생성 & 폴더 git bash로 열기
-
pull할 github repository 주소 복사하기
- 아래 명령어 순서대로 입력
git init git remote add origin (github repository 주소) git pull origin main
- 완료된 모습
로컬 컴퓨터에서 github로 push
git add .
git commit -am "(커밋 이름)"
git push origin main