2018 Aug. 19.
$ cd ~/.ssh
$ mkdir bitbucket
$ cd bitbucket
$ ssh-keygen -t rsa -C YourMail@Address
Enter file in which to save the key の問いに ~/.ssh/bitbucket/id_rsa と入力する。
パスワードの設定を2回問われるが、Enterのみを入力する。
$ mv id_rsa id_rsa.bitbucket
$ chmod 600 id_rsa.bitbucket
~/.ssh/config に次を記載する
Host bitbucket.org
HostName bitbucket.org
IdentityFile ~/.ssh/bitbucket/id_rsa.bitbucket
User git
Port 22
TCPKeepAlive yes
IdentitiesOnly yes
https://bitbucket.org にアクセスし、
「Manage Account」→「SSH keys」→「Add Key」と鍵設定画面に移る。
Label:任意の文字列(クライアントデバイス名とか)
Key:「id_rsa.bitbucket.org.pubの内容(メールアドレスを含む)」コピー&ペースト
「鍵追加」ボタンを押す。
接続テスト
$ ssh -T git@bitbucket.org
(表示)
conq: logged in as ユーザ名.
You can use git or hg to connect to bitbucket. Shell access is disabled.
それまでhttps/sslで認証していたリポジトリは削除して再クローンを要するみたい。
0 件のコメント:
コメントを投稿