기타/데이터베이스프로그래밍

[Eclipse - Git 협업 오류] Pulling 1 repository . See 'Details' for more information. Nothing to fetch.

yujindonut 2021. 11. 10. 18:10
728x90

팀프로젝트를 진행하는 과정

팀원이 올린 commit을 받기 위해서 pull 하는 과정에서 오류가 났다.

Pulling 1 repository . See 'Details' for more information. 

Nothing to fetch.

내 프로젝트의 Remote에 fetch가 안잡혀있어서 발생하는 에러라고 한다.

 

git repositories -> 내 프로젝트 오른쪽 클릭 -> properties 열기

 

Configuration을 보면 remote->origin에 fetch가 없는 것을 알 수 있다.

Add Entry에

key값에는 remote.origin.fetch

value값에는 +refs/heads/*:refs/remotes/origin/*

 

이렇게 하면,, nothing to fetch오류는 사라진다~

이제는 다른 오류가 난다 하하

728x90