이클립스에서 git을 연동하고 pull 또는 fetch from upstream을 진행하면 Nothing to fetch 에러가 발생.
프로젝트의 Remote에 fetch가 잡혀있지 않기 때문에 에러가 발생한 것.
1. Git Repositories - 프로젝트 우클릭 - Properties
2. Configuration - remote/origin/fetch 항목 있는지 확인.
Nothing to fetch 에러이므로, 없을 것.
3. Add Entry - Key, Value 내용 입력하여 fetch 추가
Key: remote.origin.fetch
Value: +refs/heads/*:refs/remotes/origin/*
4. Apply - Fetch & Pull 시도 - 정상적으로 git pull 수행 완료.
'Programming > Git' 카테고리의 다른 글
GitHub 지식 (0) | 2020.03.12 |
---|---|
GitHub 환경설정 (0) | 2020.03.12 |