Git学习篇之git remote add origin错误
Posted wcxcc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git学习篇之git remote add origin错误相关的知识,希望对你有一定的参考价值。
提示出错信息:fatal: remote origin already exists.
解决办法如下:
1、先输入$ git remote rm origin
2、再输入$ git remote add origin [email protected]:djqiang/gitdemo.git 就不会报错了!
3、如果输入$ git remote rm origin 还是报错的话,error: Could not remove config section ‘remote.origin‘. 我们需要修改gitconfig文件的内容
4、找到你的github的安装路径,我的是C:UsersASUSAppDataLocalGitHubPortableGit_ca477551eeb4aea0e4ae9fcd3358bd96720bb5c8etc
5、找到一个名为gitconfig的文件,打开它把里面的[remote "origin"]那一行
删掉就好了!
以上是关于Git学习篇之git remote add origin错误的主要内容,如果未能解决你的问题,请参考以下文章
[git 学习篇] git remote add origin错误
Difference between git remote add and git clone