Github的“致命:远程起源已经存在”

在使用Github 进入某个远程仓库操作时提示致命错误

操作语句:$ git remote add origin https://github.com/luodao236/onceAgain.git

报错提示:

fatal: remote origin already exists.

该错误消息表示,已经有一个远程具有相同名称的构成。所以,可以用不用的名称添加新的远程或更新现有的一个。

方法一:添加新的名称:

git remote add newname https://github.com/luodao236/onceAgain.git
最后提交提交代码的命令为
git push newname master



方法二:修改origin 指向地址

git remote set-url origin https://github.com/luodao236/onceAgain.git
最后的提交代码的方式不变还是
git push origin master



你可能感兴趣的:(git)