如何在Ubuntu 12.04上安装Git

什么是红色表示

用户需要输入或定制的生产线将在红色在本教程! 其余的应该主要是复制和粘贴。

关于Git

Git是在2005年向公众发布的分布式版本控制系统。该程序允许项目的非线性开发,并且可以通过将其存储在本地服务器上来有效地处理大量数据。 本教程将介绍两种安装Git的方法。

如何安装Git与Apt-Get

使用apt-get安装Git是一个快速而简单的过程。 该程序使用一个命令在虚拟专用服务器上安装:

sudo apt-get install git-core

完成下载后,您将安装Git并准备使用。

如何从源代码安装Git

如果你渴望下载最新版本的Git,通常是一个好主意从源代码安装它。

快速运行apt-get更新,以确保您下载最新的软件包到您的VPS。

sudo apt-get update

在安装Git本身之前,请下载所有必需的依赖关系:

sudo apt-get install libcurl4-gnutls-dev libexpat1-dev gettext libz-dev libssl-dev build-essential

一旦被安装,你可以从下载最新版本的Git 谷歌代码页

wget https://git-core.googlecode.com/files/git-1.8.1.2.tar.gz

下载后,解压文件并切换到该目录:

tar -zxf git-1.8.1.2.tar.gz
cd git-1.8.1.2

如果要执行全局安装,请使用sudo前缀作为自己安装一次并以root身份安装一次:

make prefix=/usr/local all
sudo make prefix=/usr/local install

如果你需要在将来更新Git,你可以使用Git本身来做到这一点。

git clone git://git.kernel.org/pub/scm/git/git.git

如何设置Git

安装Git后,不管是从apt-get还是从源代码,都需要在gitconfig文件中复制用户名和电子邮件。 您可以在〜/ .gitconfig访问此文件。

在一个新的Git安装后打开它会显示一个完全空白的页面:

sudo nano ~/.gitconfig

您可以使用以下命令添加所需的信息。

git config --global user.name "NewUser"
git config --global user.email newuser@example.com

您可以使用此命令查看所有设置:

git config --list

如果你避免输入你的用户名和电子邮件,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基础的第二个教程。

作者Etel Sverdlov
赞(52) 打赏
未经允许不得转载:优客志 » 系统运维
分享到:

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏