スパルタエンコーディングクラブ制作挑戦ログ2(githubエラー解決)


制作チャレンジで一番多かったのはGITHUB
他の人はみんな元気ですが、私はどうしてそうしますか.
結局組長は私のコードをコピーして、私の代わりにジハーバーにアップロードしました(ありがとうございます).👍)
git init -> git checkout -b frontend-min -> git add . -> git commit -m "commit"->
git push origin frontend-min(私の分岐)<-ここで間違いはずっと爆発しています
To https://github.com/bok/
 ! [rejected]        frontend-min -> frontend-min (fetch first)
error: failed to push some refs to 'https://github.com/bok/
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.
githubリポジトリが私のレコードと一致しないためです
合併が必要だと言う
次は解決策です!
強制プッシュ
  • (-f)
    強制上書きのため、
  • に注意
    2.引く
    git pull origin frontend-min
    C:\Users\Desktop\sparta\github\templates>git pull origin frontend-min
    From https://github.com/bok
     * branch            frontend-min -> FETCH_HEAD
    Already up to date.
    
    ~~~(중간 과정 add,commit,status 생략)
    

    成功!
    合併ブランチに関するブログhttps://mylko72.gitbooks.io/git/content/branch/merge.htmlがあります.
    あとでまた問題が出たら、よく観察しましょう~