When I do Git push, I get the following error message -
Username:
Password:
error: The requested URL returned error: 403 while accessing https://github.com/Selvam-T/hw4_rottenpotatoes.git/info/refs
My Git clone read-only address is https://github.com/Selvam-T/hw4_rottenpotatoes.git
I followed the suggestion and changed the repo config to ssh way like this -
git remote set-url origin ssh://git@github.com/Selvam-T/hw4_rottenpotatoes.git
Then the error message I got, when I did "git push origin master", is this -
ssh: Could not resolve hostname github.com:Selvam-T: Name or service not known
fatal: The remote end hung up unexpectedly
How can I fix either one of those communication issue?