Je souhaite cloner un dépôt privé dans Google Colab,
J'ai ouvert un cahier sur colab et j'ai fait ce qui suit :
%cd "content/drive/My Drive/project"
!rm -rf /root/.ssh*
!mkdir /root/.ssh
!ssh-keygen -t rsa -b 4096 -C "githubname@github.com"
puis j'ai ouvert la clé publique par
!cat /root/.ssh/id_rsa.put
J'ai copié la clé publique qui s'affiche après avoir exécuté la commande et j'ai créé une nouvelle clé dans mon GitHub en utilisant cette clé.
J'ai ensuite essayé ce qui suit :
!ssh-keyscan GitHub.com >> /root/.ssh/known_hosts
!chmod 644 /root/.ssh/known_hosts
!chmod 600 /root/ssh/id_rsa
!ssh -T github.com
puis j'obtiens ce qui suit (permission refusée)
# github.com:22 SSH-2.0-babeld-d45c1532
# github.com:22 SSH-2.0-babeld-d45c1532
# github.com:22 SSH-2.0-babeld-d45c1532
Warning: Permanently added the RSA host key for IP address '140.82.113.3' to the list of known hosts.
root@github.com: Permission denied (publickey).
Que dois-je faire ensuite ?