서버 Server

Centos7 에서 git 설치, 업그레이드

은둔한량 2024. 5. 31. 14:46
반응형

Centos 7 버전에서 git을 설치 하였다.

서버 버전 확인

https://koreanred.tistory.com/172

[root@CALL-Statistics max]# cat /etc/*release*
CentOS Linux release 7.9.2009 (Core)
Derived from Red Hat Enterprise Linux 7.9 (Source)
NAME="CentOS Linux"
VERSION="7 (Core)"
ID="centos"
ID_LIKE="rhel fedora"
VERSION_ID="7"
PRETTY_NAME="CentOS Linux 7 (Core)"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:centos:centos:7"
HOME_URL="https://www.centos.org/"
BUG_REPORT_URL="https://bugs.centos.org/"

CENTOS_MANTISBT_PROJECT="CentOS-7"
CENTOS_MANTISBT_PROJECT_VERSION="7"
REDHAT_SUPPORT_PRODUCT="centos"
REDHAT_SUPPORT_PRODUCT_VERSION="7"

CentOS Linux release 7.9.2009 (Core)
CentOS Linux release 7.9.2009 (Core)
cpe:/o:centos:centos:7
[root@CALL-Statistics max]#

 

서버(CentOS)에서 Git으로 소스를 관리하기 위해 Git을 설치했다.

 sudo yum install git
 

git 버전 확인

[root@CALL-Statistics max]# git --version
git version 1.8.3.1
[root@CALL-Statistics max]#

git 을 설치를 하였는데 old 버젼이었다 그래서 최신버전을 받아서 설치를 하였다.


git 최신 버전 설치

$ yum install http://opensource.wandisco.com/centos/7/git/x86_64/wandisco-git-release-7-1.noarch.rpm
$ yum remove git
$ yum install git

$ git --version
git version 2.41.0

 

github repo에 붙어서 소스를 다운 받아서 사용 하였다.

환경 설정하기

$ git config --global user.email {user_email}
$ git config --global user.name {user_name}
반응형