728x90
반응형
오류
git pull
git pull 실행
반응형
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details.
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream-to=origin/<branch> master
다음과 같은 오류가 나타납니다
git pull origin master
오류가 나면 항상 위 명령어를 실행하면 문제없이 pull 됐지만 오늘은 저 메시지가 안나오게 해결하고 싶습니다
해결
찾아보니 로컬 branch와 리모트 branch를 merge 시켜줘야 하는 것 같습니다
친절하게 메시지로 알려주고 있었네요
728x90
git branch
브랜치를 확인해봅니다
저는 혼자 개발하느라 master 브랜치 1개 뿐입니다
git branch --set-upstream-to=origin/master master
위 메시지에 맞게 명령어를 입력합니다
로컬 master branch가 origin/master를 추적하도록 설정 됐습니다
이제 git pull하면 메시지가 뜨지않고 정상적으로 실행됩니다
반응형