0%

Git——安装与配置

上一篇了解了版本控制的类型、Git 相较其他版本控制的优点,接下来就来说说在 Ubuntu 中的安装和配置 Git。

安装 Git

无脑装

sudo apt-get install git

从源码安装

我个人更喜欢从源码安装软件,因为上面无脑装的软件版本可能会比较老旧,从源码安装可以安装到最新版的软件。

如果以前安装过 Git,可以通过 git clone https://github.com/git/git.git 获取最新的源码。

如果没安装过,可以在 https://github.com/git/git/releases 下载到源码的压缩包(tar.gz)。

解压压缩包: tar zxvf git-*.tar.gz

安装依赖:

1
sudo apt-get -y install libcurl4-gnutls-dev libexpat1-dev gettext libz-dev libssl-dev autoconf asciidoc xmlto docbook2x

然后就开始编译安装了:

1
2
3
4
5
cd git-*
make configure
./configure
make -j4 all doc info
sudo make install install-doc install-html install-info

在上面的命令中,**-j4** 表示用 4 个线程编译,如果你的 CPU 是 四核八线程,建议使用 -j8

配置 Git

首先配置用户名和邮箱:

1
2
3
git config --global user.name "your name"
git config --global user.email "your email"
git config -l

如果你所在的环境需要通过代理来联网,可以这样设置:

1
2
3
4
5
6
7
# http
git config --global http.proxy http://127.0.0.1:1080
# https
git config --global https.proxy http://127.0.0.1:1080
# socks5
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'

按照情况设置即可,取消代理是:

1
2
git config --global --unset http.proxy
git config --global --unset https.proxy
如果你喜欢我的博客,那就请我吃冰淇淋吧(づ ̄3 ̄)づ╭❤~

欢迎关注我的其它发布渠道