github - Problèmes liés à la création d'un nouveau projet par git
曾经蜡笔没有小新
曾经蜡笔没有小新 2017-06-26 10:49:31
0
3
874

Il y a eu un problème lors de la création du projet, veuillez voir où je me suis trompé

  1. Codez localement

  2. Créez un nouveau projet sur github et créez readme.md directement en utilisant github

  3. git distant ajouter l'origine git@github.com:xxx/xxx

  4. git push -u origin master
    Allez ici et commencez à signaler les erreurs :

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.

Puis git pull, une autre erreur a été signalée :

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

Qu'est-ce qui ne va pas avec ça ? Quelle est la bonne façon de pousser un projet git

曾经蜡笔没有小新
曾经蜡笔没有小新

répondre à tous(3)
某草草
//第一步创建仓库
//第二步 git clone 
//第三步 把你的项目代码添加到clone出的文件夹里面
//第四步 push代码到远端仓库
阿神

La solution à votre deuxième erreur est la suivante

[问题]fatal: refusing to merge unrelated histories

[解决]git pull origin master --allow-unrelated-histories

La bonne façon d'utiliser git est


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

小葫芦

De manière générale, un entrepôt ne peut avoir qu'un seul point de soumission initiale. Si vous créez une soumission initiale via Github et créez une soumission initiale localement, une erreur sera naturellement signalée lors du push local.

Si vous choisissez d'initialiser l'entrepôt via un fichier readme ou similaire lors de la création d'un projet sur Github, vous devez cloner l'entrepôt distant localement au lieu de créer un nouvel entrepôt et de lier l'entrepôt distant.

Si vous n'avez pas sélectionné l'option d'initialisation de l'entrepôt lors de la création du projet sur Github, vous pouvez créer un nouvel entrepôt localement, le lier à l'entrepôt distant et transmettre la soumission initiale locale à l'entrepôt distant.

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal