検索

ホームページ  >  に質問  >  本文

git出现这种错误是什么原因?error :hint?

$ git push origin master
To git@github.com:qzmly100/repository-.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'git@github.com:qzmly100/repository-.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.

分析一下如何解决?

给我你的怀抱给我你的怀抱2792日前670

全員に返信(4)返信します

  • ringa_lee

    ringa_lee2017-05-02 09:21:50

    提出は別のマシンで行いましたか? ?

    ローカル ブランチに存在しないコミットがリモート ブランチにあります。これは、複数人による共同開発中によく発生する問題です。最初に fetch を実行してから、merge を実行できます。 、または pull です。リモート ブランチのコミットをローカル ブランチにマージしてから、push を実行します。 fetchmerge,也就是pull,把远程分支上的提交合并到本地分支之后再push

    如果你确定远程分支上那些提交都不需要了,那么直接git push origin master -f

    リモート ブランチ上のこれらのコミットがもう必要ないことが確実な場合は、直接 git Pushorigin master -f を実行して、ローカル ブランチにリモート ブランチを上書きさせます。 。 。 #🎜🎜#

    返事
    0
  • 世界只因有你

    世界只因有你2017-05-02 09:21:50

    リモート ライブラリのバージョンはローカル ライブラリより新しいです。リモート ライブラリに git Push する前に、ローカル ライブラリを更新するには git pull する必要があります~

    簡単に言えば、リモート ライブラリにはローカル ライブラリにないものが含まれており、まず同期する必要があります。その後、ローカル ライブラリのコンテンツをリモート ライブラリにプッシュできます~

    返事
    0
  • PHPz

    PHPz2017-05-02 09:21:50

    それは非常に明確ではありませんか? 。 ?

    最初にフェッチしてみましょうfetch first

    就是先git pull

    最初に git pull だけを行ってください...🎜

    返事
    0
  • PHP中文网

    PHP中文网2017-05-02 09:21:50

    ローカル ウェアハウス データがリモート ウェアハウス データと矛盾している可能性があります。まず、リモート ウェアハウス (git pull オリジン マスター) のすべてのコンテンツをキャプチャしてマージしてから、ローカル ウェアハウス データ (git プッシュ オリジン マスター) をプッシュする必要があります。

    返事
    0
  • キャンセル返事