4
3

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

Sourcetree に SSHで接続する mac

Last updated at Posted at 2019-07-06

パソコンを買い換えるたびに、SSHの設定ができなくて困っている自分のためにw

#SSH認証の公開鍵と秘密鍵を作成する

  1. Terminalを開いて以下のコマンドを入力
$ ssh-keygen
  • 鍵の保存場所など聞かれるが、問題ないので「Enter」をクリックし続ける
  • パスワードを2回入力する
  • 鍵が生成される(id_rsa: 秘密鍵, id_rsa.pub: 公開鍵)

以下のコマンドを叩いて、鍵が生成されているか確認する

$ cd ~/.ssh 
$ ls
id_rsa		id_rsa.pub

上記のように鍵が生成されたら終了。

※ SSHでアクセスした際にパスワード聞かれないようにするを追記する

#BitbucketにSSH鍵を登録する

Terminalを開いて以下のコマンドを叩いて、鍵をクリップボードにコピーします

$ pbcopy < ~/.ssh/id_rsa.pub

Bitbucketにブラウザにアクセスします
次にページ下にある「Bitbucket Setting」をクリックします
スクリーンショット 2019-07-06 15.02.57.png

  1. セキュリティ > SSH鍵 をクリックしページに移動
  2. ページにある「SSH 鍵を追加」をクリックします
  3. 「Lable」には鍵の名前を入力「Key」に先程クリップボードに保存した鍵を貼り付けますスクリーンショット 2019-07-06 15.07.20.png
  4. 「鍵を追加」をクリックして鍵を保存して終了

##githubのSSH鍵の保存場所
スクリーンショット 2019-07-06 15.15.48.png

4
3
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
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?