I have generated an SSH key on my work laptop (ssh-keygen -t ed25519 -C "me@my-personal-email.org"
) and added it to the list of SSH keys of my personal repository. Yet when I try to git push
to this personal repo (from my work laptop) I get the message:
ERROR: Repository not found.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
I also added these lines to the repo .git/config
:
[user]
name = MY NAME
email = me@my-personal-email.org
... and I get the same error.
The repo definitely exists and I thought I had set up access... what could I be missing?