69
50

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

UbuntuにGitをインストールする

Last updated at Posted at 2018-06-27

環境

  • Ubuntu

Gitをインストールする

以下のコマンドを叩く

sudo apt-get install git

Gitがインストールされたか確認する

以下のコマンドを叩き、バージョンが表示されていればOK

dpkg -l git

Gitの初期設定を行う

以下のコマンドを叩き、初期設定を行う

git config --global user.name [任意のユーザ名]
git config --global user.email [任意のユーザ名]
69
50
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
69
50

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?