Redhat에서 "git clone"을 실행할 때 인증서 설정 오류

Redhat에서 "git clone"을 실행할 때 인증서 설정 오류

실수:

% git clone --depth 1 http://github.com/junegunn/fzf.git ~/Downloads/fzf
Initialized empty Git repository in ~/Downloads/fzf/.git/
error: error setting certificate verify locations:
  CAfile: /etc/ssl/certs/ca-certificates.crt
  CApath: none while accessing http://github.com/junegunn/fzf.git/info/refs

RHEL 버전:

% cat  /etc/redhat-release
Red Hat Enterprise Linux Server release 6.5 (Santiago)

ca 인증서가 설치되지 않은 것 같습니다.

% which ca-certificates
/usr/bin/which: no ca-certificates in ( ... )

루트 액세스 권한이 없습니다. 이 문제를 해결할 수 있는 방법이 있습니까?

답변1

Git이 기대하는 인증서가 없습니다. 같은 질문에 답변이 되었어요여기.

관련 정보