App.git error: remote origin already exists.
时间: 2023-11-07 10:52:14 浏览: 196
解决fatal:remote error:You can’t push to git://github.com/username/*.git问题的办法
5星 · 资源好评率100%
这个错误提示意味着远程仓库的origin已经存在了。如果你想要添加一个新的远程仓库,你可以使用`git remote set-url origin <新的远程仓库地址>`来修改origin的URL。如果你想要删除origin,你可以使用`git remote rm origin`命令。如果删除不成功,你需要手动修改.git/config文件中的remote.origin的配置。你可以将URL修改为你想要的新的远程仓库地址。请注意,修改.git/config文件时要小心,确保你对文件的修改是正确的。
阅读全文