首页 > 服务器 > Web服务器 > 正文

解决fatal:remote error:You can't push to git://github.com/username/*.git问题的办法

2024-09-01 13:49:28
字体:
来源:转载
供稿:网友

解决fatal:remote error:You can't push to git://github.com/username/*.git问题的办法

今天Git push的时候

fatal:remote error:You can't push to git://github.com/username/*.gitUse git@github.com:username/*.git

看来我是没有权限push啊。

解决方法:

git remote rm origingit remote add origin git@github.com:username/resname.git

接下来就可以push了。 

这个问题一般是clone的时候选择的协议导致的。如果是用的git://github.com/userna/userrepository.git。只有读的权限,不能写入。导致不能push。

要用ssh协议才能push所以clone用git@github.com:username/userrepository.git

用ssh还必须要创建一个SSH Key。并把公钥填写到用户在GitHub的信息里。具体看GitHub的相应帮助

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表