본문 바로가기
Git

[Git] git pull 도중 "There is no tracking information for the current branch." 에러

by 파인스코어 2023. 11. 19.
728x90

에러가 뜬 과정

git pull을 했더니 다운로드는 된 것 같지만 파일은 변하지 않았다.

에러 코드

해결 방법

1.

$ git branch --set-upstream-to=origin/[브랜치명] [브랜치명]


2.

$ git pull

참조

https://insapporo2016.tistory.com/53

728x90