suchen

Heim  >  Fragen und Antworten  >  Hauptteil

github – Probleme beim Erstellen eines neuen Projekts durch Git

Beim Erstellen des Projekts ist ein Problem aufgetreten. Bitte sehen Sie, wo ich einen Fehler gemacht habe

  1. Lokal codieren

  2. Erstellen Sie ein neues Projekt auf Github und erstellen Sie readme.md direkt mit Github

  3. git remote Herkunft hinzufügen git@github.com:xxx/xxx

  4. git push -u origin master
    Hierhin gehen und Fehler melden:

error: failed to push some refs to 'git@github.com:xxx'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushing
hint: to the same ref. You may want to first integrate the remote changes
hint: (e.g., 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

Dann, git pull, wurde ein weiterer Fehler gemeldet:

warning: no common commits
remote: Counting objects: 4, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 4 (delta 0), reused 0 (delta 0), pack-reused 0
Unpacking objects: 100% (4/4), done.
From github.com:xxx
 + 8324a8d...8c9fdd4 master     -> origin/master  (forced update)
fatal: refusing to merge unrelated histories

Was ist daran falsch? Wie treibt man ein Git-Projekt richtig voran?

曾经蜡笔没有小新曾经蜡笔没有小新2747 Tage vor900

Antworte allen(3)Ich werde antworten

  • 某草草

    某草草2017-06-26 10:51:31

    //第一步创建仓库
    //第二步 git clone 
    //第三步 把你的项目代码添加到clone出的文件夹里面
    //第四步 push代码到远端仓库

    Antwort
    0
  • 阿神

    阿神2017-06-26 10:51:31

    你的第二次错误解决如下

    [问题]fatal: refusing to merge unrelated histories
    
    [解决]git pull origin master --allow-unrelated-histories
    

    使用git的正确姿势是

    
    1. git init
    
    2.git add .
    
    3.git commit -m '注释'
    
    4. git remote add origin httpsxxxx
    
    5.git pull origin master
    
    6. git push -u origin master
    
    

    Antwort
    0
  • 高洛峰

    高洛峰2017-06-26 10:51:31

    通常来说,仓库只能有一个初始提交点,而你这里通过Github创建了一个初始提交,又在本地创建了一个初始提交,自然在本地进行推送的时候会报错。

    如果你在Github创建项目的时候,选择了通过readme之类的方式初始化了仓库,你本地应该通过克隆远程仓库到本地,而不是创建一个新仓库并绑定远程仓库。

    如果你在Github上创建项目的时候,没有选择仓库初始化选项,你可以在本地创建一个新仓库,并绑定远程仓库,把本地的初始提交推送到远程仓库。

    Antwort
    0
  • StornierenAntwort