Git & GitHub 실습 - 로컬 & 원격
Local & Remote
Local
: 내 컴퓨터-
Remote
: 다른 사람 컴퓨터
local ➡️ remote
- github repository 생성
github에서 새 리포지토리를 생성한다. -
git remote add origin 리포지토리
리포지토리와 내 로컬 폴더를 연결한다.git remote add origin repository_address
-
git push origin main
github 리포지토리 mian 브랜치에 현재 커밋들을 넣는다. (로컬 → 서버)git push origin main
local ⬅️ remote
-
git clone
github 리포지토리에서 모든 커밋들을 내 로컬로 가져온다.git clone repository_address
-
git pull origin main
서버에서 변경사항이 일어난 것을 로컬로 동기화한다. (서버 → 로컬)git pull origin main
.gitignore
올리고 싶지 않은 파일을 포함한 파일 .gitignore.io 홈페이지 활용
pro설정✨
→ 다양한 혜택 제공, 대학생에게는 무료!