nothing-to-fetch
![[eclipse/github] nothing to fetch 에러](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FvVwuo%2Fbtrrqm4paTU%2FTcoD6kdTSextrPkA7Qicb0%2Fimg.jpg)
[eclipse/github] nothing to fetch 에러
이클립스에서 git을 사용해 Pull 해오려다가 Nothing to fetch 에러가 발생했다. 해당 프로젝트의 remote에 fetch가 안 잡혀 있어서 발생하는 에러이다. 해결 방법 1. Git Repositories 탭에서 git 프로젝트 마우스 우클릭 -> [Properties] 2. [Configuration] - remote>origin 에 fetch 항목이 있는지 확인한다. 해당 에러는 fetch가 없기 때문에 발생하므로 아마 없을 것이다. 필자는 항목을 추가한 후 캡처한 것이다! 3. fetch 를 추가한다. [Add Entry] - 다음과 같이 입력한다. Key: remote.origin.fetch Value: +refs/heads/*:refs/remotes/origin/* 4. Appl..