Git for Windows インストールノート
Git for Windowsの私的導入手順。
インストールのタイミング
-
VSCodeをインストール。
インストール完了後に起動しないように注意。 -
Git for Windowsをインストール。
SSHキーの設定なども全て行う。 -
VSCodeで動作確認。
インストールオプション
画面遷移の順に記載。(git version 2.30.0.windows.2)
- Select Components
- 規定値
- Select Start Menu Folder
- 規定値
- Choosing the default editor used by Git
- Use Visual Studio Code As Git’s default editor
- Adjustin the name of the initial branch in new repositories
- Let Git decide
- Adjusting your PATH environment
- Use Git from the Windows Command Prompt
- Choosing HTTPS transport backend
- Use the OpenSSL library
- Configuring the line ending conversions
- Checkout as-is, commit as-is
- Configuring the terminal emulator to use with Git Bash
- Use MinTTY
- Choose the default behavior of ‘git pull’
- Default (fast-forward or merge)
- Choose a credential helper
- Git Credential Manager Core
- Configuring extra options
- 規定値
- Configuring experimental options
- 規定値
グローバル設定
ユーザー情報
$ git config --global user.name "user_name"
$ git config --global user.email "your_email@example.com"
日本語ファイル名の文字化け対策
$ git config --global core.quotepath false
設定の確認
$ git config --list
SSHキーの生成
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
C:\Users\UserName\.ssh
ディレクトリにid_rsa
とid_rsa.pub
の2ファイルが作成される。
GitHubアカウントにSSHキーを登録する
-
clip < ~/.ssh/id_rsa.pub
でid_rsa.pub
の内容をコピー。 -
GitHub > Settings > SSH and GPG keys で
New SSH Key
をクリック。 -
Title
にはPCのデバイス名等を入力する。 -
Key
には先ほどコピーしたキーを貼り付ける。 -
Add Key
をクリック。
SSHエージェントへ秘密鍵を登録する
-
$ ssh -T git@github.com
で出力されるfingerprintsがGitHub’s SSH key fingerprints - GitHub Docsのfingerprintsと一致すればyes
と入力。 -
yes
入力後に以下のエラーが出た場合はssh-add -l
を試す。Warning: Permanently added 'github.com,52.69.186.44' (RSA) to the list of known hosts. Connection reset by 52.69.186.44 port 22
-
ssh-add -l
で更に以下のエラーが出た場合は$ eval `ssh-agent`
(引用符は@
の方)と入力し、Agent pid 数字
と出力されればOK。Could not open a connection to your authentication agent.
-
再度
$ ssh-add -l
を入力しThe agent has no identities.
と出力されればOK。 -
SSHエージェントに作成した秘密鍵を登録する。
$ ssh-add ~/.ssh/id_rsa
-
パスフレーズを設定している場合は入力し、
Identity added: /c/Users/UserName/.ssh/id_rsa (your_email@example.com)
と出力されればOK。 -
再び
$ ssh -T git@github.com
し、パスフレーズ無しで以下のように表示されればOK。Hi user_name! You've successfully authenticated, but GitHub does not provide shell access.
アップデート
$ git update-git-for-windows