git branch update
fatal: not a valid object name: 'main'
문제 발생
원격 브랜치를 업데이트하려면 git remote update 명령어를 입력해줘야하는데
git branch update라는 지원하지 않는 없는 명령어를 입력해서 발생했다.
해결 방법
원격 저장소의 브랜치 정보를 로컬에 업데이트하고 pull로 당겨받아 동기화
방법 1
dev@ui-MacBookAir [프로젝트 폴더] % git fetch
dev@ui-MacBookAir [프로젝트 폴더] % git pull
방법 2
dev@ui-MacBookAir [프로젝트 폴더] % git remote update
dev@ui-MacBookAir [프로젝트 폴더] % git pull
느낀 점
git checkout -b [브랜치명] origin/[브랜치명]