1

I am having issues configuring my GitHub SSH with VSC codespace.

I keep having this information below:

Warning: Permanently added '[ssh.github.com]:443' (ED25519) 
         to the list of known hosts.
fit@ssh.github.com: Permission denied (publickey).
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250

1 Answers1

0

Check first if you used the right SSH URL

fit@ssh.github.com
^^^
It should be git, not fit
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • The fit was an error response I received – Olugbenga Raymond Oct 07 '22 at 06:14
  • @OlugbengaRaymond Then double-check the remote URL of your repository: `git remote -v` inside the repository folder. If you see "`fit`" in said URL, try `git remote set-url origin `. – VonC Oct 07 '22 at 06:19