Ubuntu安装
在Ubuntu上安装Git
以下ubuntu版本都验证OK:
- 16.04
- 20.04
安装
为了拿到最新版本的 git,增加仓库然后再安装:
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git
安装完成之后,验证版本:
git --version
git version 2.30.0
此时 git 是在 /usr/bin/ 目录下:
root@sky2:~# which git
/usr/bin/git
root@sky2:~# ls -l /usr/bin/git
-rwxr-xr-x 1 root root 1920512 Oct 4 03:50 /usr/bin/git