这个错误表明你尝试添加一个已经存在的远程源
git remote -v
这将显示所有现有的远程源及其URL。
git remote remove <remote_name>
将<remote_name>
替换为你要删除的远程源的名称。例如,如果你要删除名为origin
的远程源,请运行:
git remote remove origin
git remote add <remote_name> <remote_url>
将<remote_name>
替换为你想要的远程源名称,将<remote_url>
替换为远程仓库的URL。例如:
git remote add origin https://github.com/username/repo.git
git remote -v
你应该能看到新添加的远程源及其URL。
这样,你就成功地解决了“致命:远程源已存在”的错误。
领取专属 10元无门槛券
手把手带您无忧上云