現状
git init git add . git commit -m "my first push" git remote add origin https://github.com/hoge/fuga.git git remote -v
まではうまく行ったのですがその後git push -u origin master
を実行すると
remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information. fatal: Authentication failed for 'https://github.com/norichin/blog_django.git/'
と表示されてしまいました。
やったこと
そこでfatal
エラーをググるとこちらの記事が見つかり、この記事によるとssh -T git@github.com
を実行するとHi hoge! You've successfully authenticated, but GitHub does not provide shell access.
と表示されないとおかしいそうなのですが、僕の場合はgit@github.com: Permission denied (publickey)
と表示されてしまいました。
そして今度はssh -T git@github.com
をググるとこちらの記事(やこちらの記事)が見つかり、自分の環境で確認してみると~/.ssh/configに
Host github.com IdentityFile ~/.ssh/github User git
の記載がなかったので追記し、/.ssh/githubはなく代わりに/.ssh/known_hostsというのがあったので中身を見ると
github.com,{IPアドレス},ssh-rsa hogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehoge {IPアドレス},ssh-rsa hogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehogehoge
となっていたのでファイル名をknown_hosts
からgithub
に変え、再びssh -T git@github.com
を実行すると
The authenticity of host 'github.com ({先程の2つ目のIPアドレス})' can't be established. RSA key fingerprint is SHA256:hogehogehogehogehogehogehogehoge. Are you sure you want to continue connecting (yes/no/[fingerprint])?
と表示され、このまま続けていいのか自分の状況がよくわからなくなっており、どなたかお助けいただけますと非常に嬉しいです。よろしくお願いいたします。環境はMac OS BigSurです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/10/26 16:02
2021/10/26 20:17 編集
2021/10/27 03:00 編集
2021/10/27 02:53 編集
2021/10/27 04:17
2021/10/27 04:25
2021/10/27 12:52
2021/10/27 17:01 編集
2021/10/27 17:47