여백에 도장 찍기

Git SSL Connection 본문

VCS/Git

Git SSL Connection

Linzyseo 2019. 1. 21. 18:16

 

Git Version이 1.7 이하이면 SSL Connection에 문제가 발생한다. (버전상의 한계)

따라서, 서버에서 Gitlab, GitHub 의 Code를 Clone받아, 수정하여 Push 적용하기 위해서는 Git Version을 Upgrade해야 한다. 

 

Git Version Upgrade를 위해 Git RPM Package를 설치하고, Git을 재설치 해준다.

# cat >> /etc/yum.repo.d/wandisco-git.repo <<EOF
> [WANdisco-git]
> name=WANdisco Distribution of git
> baseurl=http://opensource.wandisco.com/rhel/6/git/x86_64
> enabled=1
> gpgcheck=1
> gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-WANdisco
> EOF
# yum -y install git

# git --version
git version 2.18.0

Git Version이 1.7보다 높은 버전으로 업그레이드 된것을 확인하였고, git clone, git push 등의 명령어를 통해 SSL Connection 테스트를 

해볼 수 있다. 

 

만약, 추가해도 안될 경우에는 'yum'을 통해 rpm 설치하고, git 을 설치(설치된 경우 업데이트됨)한다. 

# yum install -y http://opensource.wandisco.com/centos/6/git/x86_64/wandisco-git-release-6-1.noarch.rpm
# yum install -y git

# git --version
git version 2.18.0

 

'VCS > Git ' 카테고리의 다른 글

[IntelliJ] GitHub에 Project 올리기  (0) 2019.07.12
Git Submodule  (0) 2019.03.06
git - ssl connection error 해결  (0) 2019.02.22
Git - Private Token 이용하여 파일 전송  (0) 2018.12.06
Git - Repository add & remove  (0) 2018.12.06
Comments