UbuntuのGitをアップデートする方法
Ubuntuに最初から入っているGitをアップデートする方法です。
Gitのバージョンを確認する
git version
git version 2.25.1
Gitのバージョンアップ手順
次のようにコマンドを実行することで、UbuntuのGitをアップデートできます。
sudo add-apt-repository ppa:git-core/ppa
sudo apt update
sudo apt upgrade
git version
git version 2.43.0
add-apt-repository
コマンドが利用できない場合は、次のコマンドでadd-apt-repositoryをインストールします。
sudo apt update
sudo apt install software-properties-common
add-apt-repositoryの一覧について
add-apt-repository
した一覧は、/etc/apt/sources.list.d/ディレクトリで確認できます。また、ディレクトリ内のファイルでは、追加されたリポジトリの情報を確認できます。