Git/GitHub can’t push to master
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
GitHub doesn’t support pushing over the Git protocol, which is indicated by your use of the URL beginning
git://
. As the error message says, if you want to push, you should use either the SSH URLgit@github.com:my_user_name/my_repo.git
or the “smart HTTP” protocol by using thehttps://
URL that GitHub shows you for your repository.