上一篇了解了版本控制的类型、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 | cd git-* |
在上面的命令中,**-j4** 表示用 4 个线程编译,如果你的 CPU 是 四核八线程,建议使用 -j8。
配置 Git
首先配置用户名和邮箱:
1 | git config --global user.name "your name" |
如果你所在的环境需要通过代理来联网,可以这样设置:
1 | # http |
按照情况设置即可,取消代理是:
1 | git config --global --unset http.proxy |