728x90
git pull 안되고 아래 에러가 뜨는 경우 현재 분기에 원격 분기에 대한 추적이 없기 때문에 발생합니다.
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
해결
git branch --set-upstream-to=origin/<my_branch_name>
git pull
728x90