2
2

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.

SourcetreeからGithubにSSH接続する

Last updated at Posted at 2021-02-27

#はじめに
本記事は自分のための備忘録です。
接続するための最低限の情報のみしか記載していません。

#環境
mac OS BigSur 11.2.1
Sourcetree 4.1.0

$ cd ~/.ssh
$ ssh-keygen -t rsa

上記ディレクトリ配下にキーペア生成。
スクリーンショット 2021-02-27 14.51.52.png

#Githubでやること
###公開鍵を登録
https://github.com/
プロフィールアイコンをクリックしてsetting > SSH and GPG
と進み、SSH keysのNew SSH keyボタンをクリック。
上記で生成したid_rsa.pubの中身をコピペして登録。

#Sourcetreeでやること
環境設定を開いてアカウントタブを開く。
追加...ボタンをクリックしてウインドウを開く。

ホスト:Github
認証タイプ:SSH
アカウントを接続ボタンを押下してGithubアカウントで認証
SSHキー:上記で生成した公開鍵が表示されていることを確認
保存ボタンを押下して設定を保存する。
スクリーンショット 2021-02-27 14.54.57.png

#ハマった点
接続テストを行うことで、known_hostsにGithubが登録され、URLからクローンできるようになった。

$ ssh -T git@github.com
2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?