Gitlab - git fetch-pack: expected shallow list 에러

Hyunjun Jang·2021년 9월 14일
1

에러 발생

GitLab CI Runner 실행 시 git fetch-pack: expected shallow list 에러 발생

에러 원인

Centos 7은 기본 git 버전 1.8.3.1을 사용한다. 이 버전은 git fetch-pack 명령을 지원하지 않는다.

에러 해결

기존 git를 삭제하고 최신버전 git 설치하여 해결

$ git --version
 > git version 1.8.3.1
$ yum remove git
$ yum -y install https://packages.endpoint.com/rhel/7/os/x86_64/endpoint-repo-1.7-1.x86_64.rpm
$ yum install git -y
$ git --version
 > git version 2.24.1
profile
Let's grow together😊

0개의 댓글