git 원격 브랜치 관련 명령어 모음

posinity·2023년 8월 17일
0

git

목록 보기
10/12

원격 브랜치 업데이트(remote branch update)

git remote update

원격 브랜치 목록 조회

git branch -r

origin/feat/laravel-mix-config

로컬 브랜치 목록 조회

git branch -a

원격 브랜치 로컬로 가져오기

git checkout -t 원격브랜치명

원격브랜치명은 "origin/feat/laravel-mix-config" 이런 형식임! origin/ 앞에 추가하기!!
-t 옵션으로 트래킹하기!

git switch로 같은 이름의 로컬 브랜치 만들고, 원격 브랜치 pull 해도 될듯!

profile
문제를 해결하고 가치를 제공합니다

1개의 댓글

comment-user-thumbnail
2023년 8월 17일

개발자로서 성장하는 데 큰 도움이 된 글이었습니다. 감사합니다.

답글 달기