GitHub 安装使用及常见错误

GitHub新手超详细使用教程

https://blog.csdn.net/qq_41782425/article/details/85183250

git与GitHub使用教程

https://www.cnblogs.com/schaepher/p/5561193.html

错误提示   fatal:remote origin already exists

 如果输入$ git remote add origin git@github.com:djqiang(github帐号名)/gitdemo(项目名).git 

    提示出错信息:fatal: remote origin already exists.

    解决办法如下:

    1、先输入$ git remote rm origin

    2、再输入$ git remote add origin git@github.com: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"]那一行删掉就好了!

一些其他错误:https://blog.csdn.net/dengjianqiang2011/article/details/9260435

原文地址:https://www.cnblogs.com/022414ls/p/12366616.html