As in the title. What I did :
eval $(ssh-agent -s)
result:
Agent pid 457
ssh-add ~/.ssh/sshKey
Works fine.ssh-add -l -E sha256
Gives proper key from the folder.git push origin master
result:
git@github.com: Permission denied (publickey). fatal: Could not read from remote repository.
ssh git@github.com
works fine. (info about successful auth but not providing shell access)
I tried the same thing with the addition of testing if git clone works on the same repo. - It does.
I also made a brand new SSH key and added it to my account but it resulted in the same error as in '4.'.
I expect to do a proper git push and save my progress.