0
0

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 3 years have passed since last update.

WindowsとUbuntuでGitHubをSSHで使う。

Last updated at Posted at 2021-08-24

GitHubをSSHで使う方法を検索すると、さまざまな環境のいろいろな方法が出てきて、どれが正しいのかわからない。(正確にはどれも正しいのだが、自分の環境で実現可能かどうかがわからない。)そこで、最もシンプルで一般的だと思う組み合わせを実際に試してみた結果を記す。

【注意】 eval "$(ssh-agent -s)" するとか、ssh-add するとか、OpenSSH クライアント/サーバーをインストールするなどの方法もあるが、Git Bashのプロセス限定だったり、個人環境に依存することもある。少なくともここで紹介する方法は、2台のWindows 10とUbuntu Desktop 20.04で動作を確認している。

Windowsだけの準備

Windows 10の中で眠っているSSH Agentを起動する。
(参考:栄諧情報システム株式会社「Windows10 の OpenSSH で ssh-add をすると警告が出て鍵を登録できない」

  1. スタートメニュー(右クリック)から「コンピューターの管理」→「サービスとアプリケーション」→「サービス」→「OpenSSH Authentication Agent」のダイアログを開く。
  2. スタートアップの種類を「自動」に変更する。
  3. サービスの状態を「開始」に変更する。

Windows SSH Agent.png

SSH Keyの作成

SSHで使用する公開鍵を作る。
(参考:Qiita GakuNaitou「gitでPlease make sure you have the correct access rights and the repository exists. が出た時の対処法」

  1. WindowsはGit Bashを、Ubuntu(Linux)ならbash(端末)を起動する。
  2. ~/.ssh に移動する。ファイルは存在しない方が望ましい。
  3. known_hosts ファイルが存在する場合、github の項目があったら消しておく。
  4. ssh-keygen -t rsa -C "" を実行して公開鍵を作成する。パスフレーズは入力しない。
  5. id_rsa(秘密鍵)と id_rsa.pub(公開鍵)が作成されていることを確認する。
  6. config ファイルを以下のとおりに作成する。
Host github
  HostName github.com
  IdentityFile ~/.ssh/id_rsa
  User git

GitHubの設定

公開鍵をGitHubに登録する。

  1. GitHubにサインインする。
  2. 右上メニューから「Settings」→「SSH and GPG keys」の画面に移動して、ボタン「New SSH key」から登録画面を開く。
  3. 「Title」にはパソコン名などを入力、「Key」には id_rsa.pub(公開鍵)のテキストを貼り付ける。最後にボタン「Add SSH Key」で登録する。

SSH and GPG keys.png

Gitの動作確認

ここまでで設定のすべてが完了した。もしも期待した動作をしない場合、手順を間違えているか、環境に問題があると思われる。

  1. bashで ssh git@github.com を実行して接続確認をする。
  2. ~/.ssh/known_hosts ファイルが作成されて、github の項目が追加される。
  3. 適当なローカルリポジトリに移動して、git fetch とか git pull してみる。
  4. 以降、どのシェルでgitコマンドを打っても、Visual Studio CodeのGit Graphでfetchしても、何も聞かれずに済む。

SSH Test.png

以上

0
0
3

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?