Git 문제 해결

1419 단어 질문

현상:


로컬 지점을 만든 후 서비스 측에 전송합니다. 비추지 않고 서비스 측에서 데이터를 가져오면 문제가 발생하고 오류가 발생합니다.그러나 로컬에 이 지점이 존재하지 않는 경우 서버에서 직접pull 지점으로 이동하면 이때push 코드에 문제가 없습니다.오류는 다음과 같습니다.
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  

If you wish to set tracking information for this branch you can do so with:

    git branch --set-upstream develop origin/

솔루션은 다음과 같습니다.
git pull origin master
Or you could set it up so that your local master branch tracks github master branch as an upstream:

git branch --set-upstream-to=origin/master master
git pull

좋은 웹페이지 즐겨찾기