如何将Git远程仓库的git://转换为https://?

12 浏览
0 Comments

如何将Git远程仓库的git://转换为https://?

这个问题已经有答案了:

如何更改远程 Git 存储库的 URI(URL)?

我在 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日
0
0 Comments

您可以直接手动编辑 .git/config 文件。

找到以下以此开始的部分:

[remote "origin"]

将:

url = https://github.com/USERNAME/REPOSITORY.git

替换为:

url https://github.com/devRena/test.git

保存

0
0 Comments

查看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 

0