Today, I had to relearn how to reset a git remote.
The problem:
Github was asking me a password when I have keys set up.
Step 1:
In the terminal
git remote -v
Okay the terminal is telling me that the remote is set to https:
https://github.com/USERNAME/REPOSITORY.git
The fix
git remote set-url origin git@github.com:USERNAME/REPOSITORY.git
Finish
My issue is that I was forgetting to include the origin.