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.

GitHubへの公開鍵の登録で躓いた箇所

Last updated at Posted at 2021-03-13

自分がGitHubへ公開鍵を登録する際に躓いた箇所のメモ

#環境
•mac book pro(2020 M1)
•macOS Big Sur 11.2.3

#前提
基本的にはこちらの記事参照

#vim画面の終了

$ vim ~/.ssh/config

でvimの挿入(?)画面へ

Host github
  HostName github.com
  User git
  IdentityFile ~/.ssh/id_rsa_github

上記の設定を入力後、入力を終われなくなりました。

設定を入力し
escを押してから

:wq

と打つと内容を保存して終了します。
もう一度 vim ~/.ssh/configを入力して確認してみるといいかもしれません。

#GitHubのSSH keysに入力するkeyの確認
finderだと.sshなどのファイルが表示されませんね😭
自分もwindowsユーザーだったのでかなりfinderには悩まされています。

cd ~/.ssh

.sshフォルダに移動します。その状態で

ls

と打つと.sshフォルダ内のファイルの一覧が表示されるはずです。

.ssh % ls
config			id_rsa_github.pub
id_rsa_github		known_hosts

ここにあるid_rsa_github.pub(或いはid_rsa.pub)を開きたいので

cat id_rsa_github.pub

と打つとssh-rsa ~~というキーが表示されると思うのでそれをコピーしてGitHubの設定画面に貼り付ければ完了です。

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