03. clone, pull

clone

clone은 원격 Repository에 있는 내용을 git 추적과 함께 로컬 Repository로 그대로 복사하는 것을 말한다.
예를 들어, 팀장이 GitHub에 코드를 올리고, 팀원들이 git init이 아닌 git clone
을 통해 올려져 있는 모든 코드를 내려받음과 동시에 git 추적이 가능해진다.

git clone <repository address> <local directory location>

Pasted image 20231004202608.png|500

Pasted image 20231004202626.png|500

pull

이제 로컬 Repository에서 원격 Repository(GitHub)로 새로 추가한 add.txt 파일을 GitHub에서 수정 한 뒤 pull 을 이용하여 원격 Repository에서 업데이트된 파일을 다시 받아와보자.

git pull

Pasted image 20231004200834.png|500


다음 글: 04. branch, merge