Create a new repository, or reuse an existing one.
Generate a new SSH key:
ssh-keygen -t rsa -C "[email protected]"
Copy the contents of the file ~/.ssh/id_rsa.pub
to your SSH keys in your GitHub account settings (https://github.com/settings/keys).
Test SSH key:
$ ssh -T [email protected]
Hi developius! You've successfully authenticated, but GitHub does not provide shell access.
Change directory into the local clone of your repository (if you're not already there) and run:
git remote set-url origin [email protected]:username/your-repository.git
Now try editing a file (try the README) and then do:
$ git commit -am "Update README.md"
$ git push
You should not be asked for a username or password. If it works, your SSH key is correctly configured.
I have created the key, added to my GitHub and in fact
ssh -T [email protected]
responds withHi troccoli! You've successfully authenticated, but GitHub does not provide shell access.
. However, when I try to push I'm still asked for a username and password. And now I can't use that method either because I have enable 2FA (or at least I think that's why).BTW, I have tried to use the token rather than my password but it didn't work.
Update May 2nd, 2019
I have switched my remotes to ssh instead of https and since I had already installed my public keys on GitHub I had no problem pushing.