본문 바로가기
DevOps/Git

Git - Remote 브랜치 안보일 때 해결방법

by 맑은안개 2021. 9. 27.

remote 신규 브랜치 안보일 때

git branch -a

명령으로 remote에 생성한 신규 브런치가 안보일 때,

git ls-remote origin

명령으로 확인한다. 신규 브랜치가 보이는지 확인한다.

Config 수정

Config 수정은 아래 두 개의 방법으로 수정 가능하다.

1. config file수정

.git/config 명령으로 git config를 수정할 수 있다.

.git/config

or

git config --global --edit

remote 이름 origin 을 아래와 같이 수정한다.

..
[remote "origin"]
    url = ...
    fetch = +refs/heads/*:refs/remotes/origin/*
..

2. config cmd 수정

git config remote.origin.fetch +refs/heads/*:refs/remotes/origin/*

Config 수정 반영 확인

git config remote.origin.fetch
+refs/heads/*:refs/remotes/origin/*

Remote branch 재 확인

git branch -a
반응형