在 CentOS 6.4 VPS 上安装 Git 的方法

简介: 在 CentOS 6.4 VPS 上安装 Git 的方法

简介


Git 是由 Linux 的创始人 Linus Torvalds 开发的开源分布式版本控制系统。它具有轻松的分支和合并功能,能够管理单个项目的多个远程存储库,并支持真正的分布式开发。

虽然 git 在管理具有数百或数千名贡献者的大型复杂项目方面表现出色,但它也可以非常适用于由一个人或一个小团队开发的小型项目。这种灵活性使其成为任何规模软件项目实施版本和源代码控制的绝佳选择。

本文将介绍如何在 CentOS 6.4 服务器上使用 yum 包管理器安装 git,并展示如何从源代码安装 git,以便您可以享受最新的改进。

使用 Yum 安装 Git


与大多数 Linux 发行版一样,git 可以从 CentOS 的默认存储库中获取。我们可以使用以下命令安装包维护者的最新版本:

sudo yum install git

您需要输入 “y” 确认安装。安装完成后,git 将被安装并准备就绪。

在 CentOS 上从源代码安装 Git


如果您想要最新版本的 git,最好从源代码中下载最新版本并进行编译。

本文撰写时,CentOS 存储库中的版本为 1.7.1,而最新版本为 1.8.4,这是一个显著的差异。

首先,我们需要使用以下命令为 CentOS 下载编译工具:

sudo yum groupinstall "Development Tools"

这将安装将源代码转换为二进制可执行文件所需的 make 工具和编译器。

完成后,我们需要安装一些 git 需要的额外依赖项,以便构建或运行:

sudo yum install zlib-devel perl-ExtUtils-MakeMaker asciidoc xmlto openssl-devel

安装完成后,您可以从托管在 github.com 上的代码获取最新版本的 git:

cd ~
wget -O git.zip https://github.com/git/git/archive/master.zip

解压存档并切换到项目目录:

unzip git.zip
cd git-master

我们可以配置软件包、构建可执行文件和文档,然后使用以下一组命令安装它:

make configure
./configure --prefix=/usr/local
make all doc
sudo make install install-doc install-html

要在以后更新 git,您实际上可以使用 git!将 git 存储库克隆到新目录,然后像之前一样构建和安装它:

git clone git://github.com/git/git

设置 Git


当您使用 git 提交更改时,它会将您的姓名和电子邮件地址嵌入提交消息中,以便轻松跟踪更改。

如果我们不自行配置这些信息,git 可能会尝试猜测这些值(可能不正确),使用您的 Linux 用户名和主机名。

使用以下命令向 git 提供您希望用于这些参数的值:

git config --global user.name "<span class="highlight">Your Name Here</span>"
git config --global user.email "<span class="highlight">your_email@example.com</span>"

配置更改将存储在您的主目录中的文件中。您可以使用普通文本编辑器查看它们:

nano ~/.gitconfig
[user]
    name = Your Name Here
    email = your_email@example.com

您还可以通过查询 git 自身的当前配置设置来查看此信息:

git config --list
user.name=Your Name Here
user.email=your_email@example.com

如前所述,如果您忘记设置这些步骤,git 可能会尝试自动填充这些值:

[master 0d9d21d] initial project version
 Committer: root 
Your name and email address were configured automatically based
on your username and hostname. Please check that they are accurate.
You can suppress this message by setting them explicitly:
    git config --global user.name "Your Name"
    git config --global user.email you@example.com
After doing this, you may fix the identity used for this commit with:
    git commit --amend --reset-author

根据您的 git 版本,它可能会完全失败:

git commit
*** Please tell me who you are.
Run
  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: empty ident name (for <demo@example.(none)>) not allowed

正如您所看到的,git 非常善于告诉您确切应该做什么。

结论


您现在已经安装了 git,并可以开始学习一些基本用法。我们有一些教程可能会对您有所帮助:

  • 如何有效使用 Git
  • 如何使用 Git 分支

Git 是一种工具,只要有基本的理解就能立即发挥作用,并且随着您的知识增长,它将继续提供优势。


目录
相关文章
|
6天前
|
Linux Docker 容器
Centos安装docker(linux安装docker)——超详细小白可操作手把手教程,包好用!!!
本篇博客重在讲解Centos安装docker,经博主多次在不同服务器上测试,极其的稳定,尤其是阿里的服务器,一路复制命令畅通无阻。
64 4
Centos安装docker(linux安装docker)——超详细小白可操作手把手教程,包好用!!!
|
3天前
|
Kubernetes Linux 开发工具
centos7通过kubeadm安装k8s 1.27.1版本
centos7通过kubeadm安装k8s 1.27.1版本
|
2天前
|
安全 Linux 编译器
Centos 7.9如何使用源码编译安装curl最新版本
通过上述步骤,您就能在CentOS 7.9上成功地从源代码编译并安装curl的最新版本。这种方法不仅提供了灵活性,允许您定制编译选项,还确保了软件的最新功能和安全更新得到应用。
14 1
|
4天前
|
应用服务中间件 Linux nginx
CentOS7安装Nginx
CentOS7安装Nginx
|
1天前
|
缓存 Linux 编译器
【C++】CentOS环境搭建-安装log4cplus日志组件包及报错解决方案
通过上述步骤,您应该能够在CentOS环境中成功安装并使用log4cplus日志组件。面对任何安装或使用过程中出现的问题,仔细检查错误信息,对照提供的解决方案进行调整,通常都能找到合适的解决之道。log4cplus的强大功能将为您的项目提供灵活、高效的日志管理方案,助力软件开发与维护。
9 0
|
5天前
|
Linux
VirtualBox的Centos上安装GNOME桌面完整教程
在VirtualBox上的CentOS系统安装GNOME桌面环境的完整教程,通过执行一系列命令来安装EPEL软件源、GNOME桌面环境,并配置系统默认运行级别为图形界面。
20 0
|
5天前
|
Oracle 关系型数据库 MySQL
CentOS7安装MariaDB成功的实践
CentOS7安装MariaDB成功的实践
18 0
|
15天前
|
缓存 Linux 开发工具
CentOS7 安装KDE报错的解决方法:Loaded plugins:fastestmirror,langpacks There is no installed group.
CentOS7 安装KDE报错的解决方法:Loaded plugins:fastestmirror,langpacks There is no installed group.
50 0
|
15天前
|
安全 测试技术 Linux
CentOS7 安装vulhub漏洞测试环境
CentOS7 安装vulhub漏洞测试环境
31 0
|
18天前
|
Linux
centos 安装etcd|待优化
centos 安装etcd|待优化