git remote add origin https://gitee.com/gzy01/pywork.git error: remote origin already exists.怎么办
时间: 2023-02-09 10:05:49 浏览: 118
解决Unable to access 'https://gitee.com/自己的项目/': Could not resolve host: gitee.com问题
这个错误提示表示远程仓库 "origin" 已经存在了,如果想要重新添加远程仓库,需要先删除已有的远程仓库。可以使用命令 "git remote rm origin" 删除已有的远程仓库,然后再使用 "git remote add origin https://gitee.com/gzy01/pywork.git" 添加新的远程仓库。
阅读全文