Gitをインストールする!(Ubuntu Desktop 22.04)

Ubuntu Desktop 22.04に、Gitをインストールします。

インストールする環境を確認する!

インストールする環境を確認します。

$ hostnamectl
 Static hostname: vmsubu02-loc-lab4ict-com
 Pretty hostname: vmsubu02.loc.lab4ict.com
       Icon name: computer-vm
         Chassis: vm
      Machine ID: 112e02b1c1d048dc890533d8ef15a212
         Boot ID: 94da6bf16a1344919e5f3b243f577f3f
  Virtualization: oracle
Operating System: Ubuntu 22.04.2 LTS              
          Kernel: Linux 5.19.0-43-generic
    Architecture: x86-64
 Hardware Vendor: innotek GmbH
  Hardware Model: VirtualBox

Gitをデフォルトのリポジトリからインストールする!

Gitをデフォルトのリポジトリからインストールします。

$ sudo apt install git
...
The following additional packages will be installed:
  git-man liberror-perl
Suggested packages:
  git-daemon-run | git-daemon-sysvinit git-doc git-email git-gui gitk gitweb git-cvs git-mediawiki git-svn
The following NEW packages will be installed:
  git git-man liberror-perl
0 upgraded, 3 newly installed, 0 to remove and 46 not upgraded.
...

Gitのバージョンを確認する!

インストールしたGitのバージョンを確認します。

$ git --version
git version 2.34.1

おわりに

Ubuntu Desktop 22.04では、Gitはデフォルトのリポジトリからインストールすることができます。