今天使用git 添加远程github仓库的时候提示错误:fatal: remote origin already exists.
最后找到解决办法如下: 1、先删除远程 Git 仓库
$ git remote rm origin
2、再次执行添加就可以了。