반응형
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}
반응형
'서버 Server' 카테고리의 다른 글
리눅스 cron job을 이용한 자동 배포 - Git Auto Pull (0) | 2024.10.28 |
---|---|
[Linux] Red Hat , CentOS 버전 확인 방법 / 리눅스 OS 버전 확인 (0) | 2024.05.31 |
윈도우 심볼릭 링크 만들기 (1) | 2023.10.10 |
Windows Server 2022 Standard FTP 서버 설정 방법 (0) | 2023.08.30 |
shell script에서 비밀번호 입력 여부 없이 scp 사용 하는 법 (0) | 2016.10.11 |