Solution of Fatal:remote Error:you can ' t push to git://github.com/username/*.git problem
Today, when Git push
Fatal:remote error:
can ' t push to git://github.com/username/*.git use
git@github.com:username/*.git
I don't think I have the right to push.
Workaround:
Git remote rm origin
git remote add Origin git@github.com:username/resname.git
The next step is to push.
This problem is usually caused by the protocol chosen at the time of clone. If the git://github.com/userna/userrepository.git is used. Read-only permissions cannot be written to. Cause cannot push.
To use the SSH protocol to push, so clone uses Git@github.com:username/userrepository.git
SSH must also be created with an SSH Key. and fill in the public key to the user in GitHub information. specifically see the corresponding help of GitHub
Thank you for reading, I hope to help you, thank you for your support for this site!