Jiwon-Hwang / All-About-Programming

Curiosity Collection (Grammar, Configuration, CS..)
0 stars 0 forks source link

Git Clone vs Git Pull #14

Open Jiwon-Hwang opened 3 years ago

Jiwon-Hwang commented 3 years ago

Git Clone

local에 아무것도 없는 상태에서 원격 저장소의 데이터를 가져오는 것

Git Pull

local에 이미 있고 원격 저장소의 수정 상태를 반영하기 위해 가져오는 것.

  • cf. git clone {url} == git init + git remote add origin {url} + git pull origin master
  • 즉, git 프로젝트를 시작 + url을 원격 저장소로 지정 + 원격 저장소를 현재 로컬 master에 병합