コンテンツにスキップ

gitインストール

gitのインストール

Windows

Git for Windowsからインストーラをダウンロードして実行します。

Ubuntu(WSL)

1
2
sudo apt update
sudo apt install git

macOS

1
brew install git

gitの初期設定

1
2
git config --global user.name "<username>"
git config --global user.email "<email>"

gitアクセストークンを記憶する

以下のコマンドでは、アクセストークンをキャッシュに記憶しますが、一時的なものです。

1
git config --global credential.helper cache

以下のコマンドでは、アクセストークンをファイルに記憶しますが、平文で保存されるため、注意が必要です。

1
git config --global credential.helper store

gitのバージョン確認

1
git --version

gitの設定確認

1
git config --list

コメント