Maison > Questions et réponses > le corps du texte
J'ai déjà configuré SSH sur gitHub et je l'ai poussé avec succès une fois, mais j'ai eu une erreur lorsque je l'ai poussé aujourd'hui
$ git push origin master
To git@github.com:ZhuYutao/learngit.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'git@github.com:ZhuYutao/learngit.git'
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.
给我你的怀抱2017-05-02 09:31:44
Il y a une raison dans le message d'erreur.
Avant de pousser cette fois, quelqu'un d'autre a poussé vers le serveur. Votre local n'est pas à jour.
Vous devez d'abord git pull, puis pousser.
给我你的怀抱2017-05-02 09:31:44
Il y a une solution à l'étage, vous pouvez aussi forcer la soumission
过去多啦不再A梦2017-05-02 09:31:44
C'est une habitude de git pull puis de git push à chaque fois que vous vous engagez, sinon la situation ci-dessus se produira