如何在Ubuntu上安装最新的Git版本
时间:2020-01-09 10:45:12 来源:igfitidea点击:
在Ubuntu上安装Git非常容易。它在Ubuntu的主存储库中可用,我们可以使用apt命令安装它,如下所示:
sudo apt install git
在基于Ubuntu的Linux发行版上安装最新的Git
Ubuntu Git Maintenanceers团队提供了一个PPA,我们可以使用它轻松地安装最新的稳定Git版本。
sudo add-apt-repository ppa:git-core/ppa sudo apt update sudo apt install git
即使我们以前使用apt安装了Git,它也将更新为最新的稳定版本。
theitroad@localhost:~$ git --version git version 2.25.0
使用PPA的好处在于,如果发布了新的Git稳定版本,则可以通过系统更新获得它。只需更新Ubuntu即可获得最新的Git稳定版本。
配置Git
如果我们出于开发目的安装了Git,则很快将开始克隆存储库,进行更改并提交更改。
如果我们尝试提交代码,则可能会看到"请告诉我我们是谁"这样的错误:
theitroad@localhost:~/compress-pdf$ git commit -m "update readme" *** Please tell me who you are. Run git config --global user.email "theitroad@localhost" 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: unable to auto-detect email address (got 'theitroad@localhost(none)')
这是因为我们尚未使用必需的个人信息配置Git。
正如错误已经暗示的那样,我们可以像这样设置全局Git配置:
git config --global user.name "Your Name" git config --global user.email "theitroad@localhost"
我们可以使用以下命令检查Git配置:
git config --list
它应该显示如下输出:
theitroad@localhost user.name=abhishek
此配置存储在〜/ .gitconfig文件中。我们也可以手动更改它以更改配置。