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