CentOS7编译安装git并配置使用github

本文介绍如何在CentOS7环境下通过编译安装Git,并详细讲解了从注册GitHub账号到实现代码同步的全过程。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一、编译安装git

CentOS7默认安装的git版本为1.8.3.1,而git官方的版本已经到2.2.0了,所以选择下载源码编译安装git

1.clone github上的git源码

$ git clone https://github.com/git/git.git

2.进入git目录进行配置及安装

1
2
3
4
5
$ cd git
$ autoconf
$ ./configure
$ make
$ make install

期间可能会提示缺少文件,是因为git的依赖包没有安装,缺什么装什么就好,或者直接
yum -y install curl curl-devel zlib-devel openssl-deve perl perl-devel cpio expat-devel gettext-deve

3.查看版本

1
2
$ git --version
git version 1.8.3.1

竟然还是原来的版本而不是最新安装的2.2.0,那只能先把旧版本卸载了

1
2
3
$ rpm -q git
git-1.8.3.1-4.el7.x86_64
$ sudo rpm -e --nodeps git-1.8.3.1-4.el7.x86_64

然后执行
sudo ln -s /usr/local/bin/* /usr/bin/
再次查看git版本

1
2
$ git --version
git version 2.2.0.GIT

git版本已经是我们新安装的2.2.0了

4.设置自己的用户名和邮箱

命令行输入:(引号加不加无所谓)

1
2
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"

5.在本地创建仓库并初始化

1
2
3
$ mkdir test
$ cd test
$ git init

初始化空的 Git 版本库于 /home/username/github/test/.git/
至此git安装完成

二、使用github

1.注册github账号

我这里创建了一个账号:SinalVee,并创建了一个Test仓库用于测试

2.用ssh-kengen生成公钥

$ ssh-keygen -t rsa -C xxx@xxx.com
xxx@xxx.com为你的邮箱地址

设定存放目录和密码后在github设置中找到SSH Keys,选择Add SSH Key,设置名称并把*/.ssh/id_rsa.pub的文件内容粘贴进去

3.测试是否成功

$ ssh -T git@github.com
出现下面的信息并提示验证私钥则成功,输入密码解锁私钥

1
2
3
4
5
The authenticity of host 'github.com (192.30.252.130)' can't be established.
RSA key fingerprint is 16:27:ac:axxxxxxxxxxxxxxxxx:df:a6:48.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'github.com,192.30.252.130' (RSA) to the list of known hosts.
Hi SinalVee! You've successfully authenticated, but GitHub does not provide shell access.

在本地任意目录新建同步文件夹

1
2
3
$ mkdir github
$ cd github
$ git clone git@github.com:SinalVee/Test(此处SinalVee为用户名,Test是你在github上创建的仓库)

1
2
3
4
5
6
正克隆到 'Test'...
Warning: Permanently added the RSA host key for IP address '192.30.252.131' to the list of known hosts.
remote: Counting objects: 6, done.
remote: Total 6 (delta 0), reused 0 (delta 0)
接收对象中: 100% (6/6), 完成.
检查连接... 完成。

因为我很久之前就创建了这个Test仓库并测试过,所以这里共有6个objects(一共两个文件,之所以这里是6是因为Git跟踪并管理的是修改,而非文件)。

接下来测试以下上传

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$ cd Test/
$ ls
README.md  test.txt
$ touch hello.txt
$ vim hello.txt
你好,这是一个测试文件。
$ ls
hello.txt  README.md  test.txt
$ git add hello.txt
$ git commit -m "add file hello.txt"
[master 0e4004c] add file hello.txt
 1 file changed, 1 insertion(+)
 create mode 100644 hello.txt
$ git push
对象计数中: 3, 完成.
Delta compression using up to 4 threads.
压缩对象中: 100% (2/2), 完成.
写入对象中: 100% (3/3), 354 bytes | 0 bytes/s, 完成.
Total 3 (delta 0), reused 0 (delta 0)
To git@github.com:sinalvee/Test
   984cabc..0e4004c  master -> master

在github的网页上刷新一下仓库,发现hello.txt已经上传成功了,至此我们的github已经配置成功,并可以使用了。

github的使用这里不多赘述了。

### 如何在 CentOS 7安装 Git #### 使用 Yum 安装 Git 可以通过 `yum` 命令快速安装 Git,这是最简单的方式之一。只需运行以下命令即可完成安装[^3]: ```bash sudo yum install git -y ``` 如果遇到错误提示 “bash: git: 未找到命令”,可能是因为系统缺少 EPEL 软件源。此时可以按照以下步骤解决该问题[^4]: 1. 添加 EPEL 软件源: ```bash sudo wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm sudo rpm -ivh epel-release-latest-7.noarch.rpm ``` 2. 再次尝试通过 `yum` 安装 Git: ```bash sudo yum install git -y ``` #### 编译安装 Git 对于需要特定版本的用户,可以选择编译安装 Git。以下是具体操作方法[^2]: 1. 安装必要的依赖库: ```bash sudo yum install -y gcc zlib-devel autoconf libcurl-devel curl-devel ``` 2. 下载解压 Git 的源码包[^5]: ```bash cd /usr/src sudo wget https://codeload.github.com/git/git/tar.gz/refs/tags/v2.28.1 sudo tar -xzvf v2.28.1 cd git-2.28.1 ``` 3. 配置编译源代码: ```bash sudo make prefix=/usr/local all sudo make prefix=/usr/local install ``` 完成后,可通过以下命令验证安装是否成功: ```bash git --version ``` #### 设置 Git 环境 无论采用哪种方式安装,在安装完毕后都需要配置基本的用户名和邮箱地址,以便用于提交记录[^1]: ```bash git config --global user.name "Your Name" git config --global user.email "your_email@example.com" ``` ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值