Github 브런치 로컬로 가져오기

이동욱·2023년 5월 4일
0
post-thumbnail

1. 원격 브런치 업데이트

브런치를 가져오기 전 github에 있는 브런치들의 정보를 최신화 한다.

git remote update

2.브런치 확인

  1. 원격 저장소 브런치 확인하기
git branch -r 
  1. 로컬, 원격 저장소 모든 브런치 확인
git branch -a

3. 브런치 가져오기

  1. 이름 그대로 가져오기
git checkout -t {가져올 브런치 이름}
  1. 이름 바꿔 가져오기
git checkout -b {바꿀 branch 이름} {원격 저장소의 branch 이름}


참조

https://cjh5414.github.io/get-git-remote-branch/

profile
프론트엔드

0개의 댓글