1. 검색했을 때 에러이유
권한 or 주소 잘못 작성
2. 현재 java 1.7 환경 이클립스에서 git pull 에러 발생
git-upload-pack
해결 원인 : git 에서 지원하는 java 버전 1.8 , 내가 쓰는건 1.7
해결: 이클립스 ini 파일 설정에 -vm (자바 경로 수정)
참고 :
https://community.atlassian.com/t5/Bitbucket-questions/JGit-quot-cannot-open-git-upload-pack-quot-error-message-on/qaq-p/604160
충돌시.
-git stash
git pull origin master
git stash apply
https://backlog.com/git-tutorial/kr/stepup/stepup6_2.html
eclipse : cannot open git-upload-pack
window > preference > team > git > configuration
add entry의 key, value에 다음과 같이 넣자.
- key : http.sslVerify
- value : false
출처: http://webie.tistory.com/94 [webie's blog]
cannot open git-receive-pack
Context Menu에서 "Configure Push" 를 선택한다.
"Configure push for remote 'origin' 에서 "Change..." 버튼을 선택한다.
출처: http://roadrunner.tistory.com/605 [삶의 조각들]