there is no tracking information for the current branch
git pull
할 때 어느 원격 브랜치와 병합할지 모르기 때문에 이렇게 나오는거임.git branch --set-upstream-to=origin/main main
↑
로컬 main 브랜치가 원격 저장소 origin의 main 브랜치를 추적하도록 설정하는 명령.
이후 git pull
명령어를 실행하면 자동으로 원격 origin/main
브랜치와 동기화됨.
git pull