如何将Git远程仓库的git://转换为https://?
如何将Git远程仓库的git://转换为https://?
这个问题已经有答案了:
我在 git Bash 写了这个
git remote -v origin git://github.com/devRena/test (fetch) origin git://github.com/devRena/test (push)
然后当我说
git push origin master fatal remote error: You can't push to git://github.com/devRena/test.git Use https://github.com/devRena/test.git
如何将 git://github.com/devRena/test.git 更改为 https://github.com/devRena/test.git ?
admin 更改状态以发布 2023年5月21日
查看GitHub上的更改远程URL文档:
使用git remote set-url
命令更改您的远程URL:
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
在您的情况下,请尝试这样做:
git remote set-url origin https://github.com/devRena/test.git