kb

Git for Windows インストールノート

  • git

Git for Windowsの私的導入手順。

インストールのタイミング

  1. VSCodeをインストール。
    インストール完了後に起動しないように注意。

  2. Git for Windowsをインストール。
    SSHキーの設定なども全て行う。

  3. 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_rsaid_rsa.pubの2ファイルが作成される。

GitHubアカウントにSSHキーを登録する

  1. clip < ~/.ssh/id_rsa.pubid_rsa.pubの内容をコピー。

  2. GitHub > Settings > SSH and GPG keys でNew SSH Keyをクリック。

  3. TitleにはPCのデバイス名等を入力する。

  4. Keyには先ほどコピーしたキーを貼り付ける。

  5. Add Keyをクリック。

SSHエージェントへ秘密鍵を登録する

  1. $ ssh -T git@github.comで出力されるfingerprintsがGitHub’s SSH key fingerprints - GitHub Docsのfingerprintsと一致すればyesと入力。

  2. 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
    
  3. ssh-add -lで更に以下のエラーが出た場合は$ eval `ssh-agent`(引用符は@の方)と入力し、Agent pid 数字と出力されればOK。

    Could not open a connection to your authentication agent.
    
  4. 再度$ ssh-add -lを入力しThe agent has no identities.と出力されればOK。

  5. SSHエージェントに作成した秘密鍵を登録する。

    $ ssh-add ~/.ssh/id_rsa
    
  6. パスフレーズを設定している場合は入力し、Identity added: /c/Users/UserName/.ssh/id_rsa (your_email@example.com)と出力されればOK。

  7. 再び$ 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

参考