[GIT] 원격 저장소(remote)에 있는 브런치 로컬로 가져오기

seungminryu·2021년 10월 25일
0
post-custom-banner

remote 업데이트

remote에 있는 브랜치에 접근하기 위해 git remote를 업데이트 해줍니다.

$ git remote update

remote 저장소의 branch 확인

$ git branch -r
-r 옵션으로 remote 저장소의 branch 리스트를 확인할 수 있다.

$ git branch -a
-a 옵션으로 로컬, remote 저장소 모두의 branch 리스트 확인 할 수 있다.

remote 저장소의 branch 확인하기

$ git checkout [remote 저장소의 branch 이름]
checkout 명령어로 브런치를 확인할 수 있다.

profile
가치를 담는 개발과 디자인 :)

0개의 댓글