질문 : Git에서 유효하지 않은 원격 분기 참조를 어떻게 제거합니까? 내 현재 저장소에는 다음과 같은 출력이 있습니다. $ git branch -a * master remotes/origin/master remotes/public/master 분기 목록에서 remotes/public/master 를 삭제하고 싶습니다. $ git branch -d remotes/public/master error: branch 'remotes/public/master' not found. git remote 의 출력은 public 목록이 없기 때문에 이상합니다. $ git remote show origin 지점 목록에서 '리모트 / 공개 / 마스터'를 삭제하려면 어떻게해야합니까? 업데이트, git push 명령을 시도했..