zoukankan      html  css  js  c++  java
  • github常见错误整理!

    1.fatal: remote origin already exists.错误

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

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

    解决办法如下:

    1>、先输入$ git remote rm origin

    2>、再输入$ git remote add origin git@github.com:djqiang/gitdemo.git 就不会报错了!

    如果输入$ git remote rm origin 还是报错的话,error: Could not remove config section 'remote.origin'. 我们需要修改gitconfig文件的内容,打开它把里面的[remote "origin"]那一行删掉就好了!

    转载:http://blog.csdn.net/dengjianqiang2011/article/details/9260435

  • 相关阅读:
    type和object详解
    元类+单例
    单表查询和多表查询
    外键
    存储引擎,MySQL中的数据类型及约束
    壹拾壹




  • 原文地址:https://www.cnblogs.com/Beyron/p/6943246.html
Copyright © 2011-2022 走看看