remote origin already exists. git错误·
时间: 2023-11-07 22:53:18 浏览: 169
安装mysql出错”A Windows service with the name MySQL already exists.“如何解决
这个错误信息 "remote origin already exists" 表明你在本地仓库中已经存在一个远程仓库地址为 "origin" 的远程仓库。要解决这个问题,你可以使用以下命令:
```
$ git remote rm origin
$ git remote add origin <new_repository_url>
```
第一条命令用于移除已存在的远程仓库地址为 "origin" 的远程仓库,第二条命令用于添加新的远程仓库地址。这样就可以解决该错误。
阅读全文