이클립스에서 Clone a git Repository to this view를 통해
내 이클립스에 GIT Repository를 추가하려 하는데
An error occurred when trying to contact [repository주소]. See the Error Log for more details
Possible reasons:
Incorrect URL
No network connection (e.g. wrong proxy settings)
.git is missing at end of repository URL
SSL host could not be verified (set http.sslVerify=false in Git configuration)
이런 에러가 뜨면서 GIT이 추가가 되지 않는 것이 보인다
여기서 무조건 위의 조건에 다 해당하게 되는데
1. URL이 틀렸다
2. 인터넷 연결이 안된다
3. repository URL에 .git 폴더가 없다
위 세 조건은
주소가 틀리지 않는 이상에야 걸릴 이유가 없으므로
주소가 틀리지 않다면
마지막 사유에 해당하는
SSL host could not be verified (set http.sslVerify=false in Git configuration)
에 걸렸을 확률이 높은데
해결하는 방법은 다음과 같다
먼저 이클립스 상단 Window > Preferences를 눌러준다
이후 Version Control (Team) > Git > Configuration으로 들어온 후
User Settings 탭에서 우측의 Add Entry를 눌러준다
Key에는 http.sslVerify
Value에는 false를 입력한 후 Add를 눌러주자
위 스크린샷과 같이
http sslVerify false가 추가가 잘 된 것이 보이면
Apply and Close를 눌러주고
GIT Repository를 다시 추가하면 추가가 잘 되는것이 보인다
댓글