スパルタエンコーディングクラブ制作挑戦ログ2(githubエラー解決)
1698 ワード
制作チャレンジで一番多かったのはGITHUB
他の人はみんな元気ですが、私はどうしてそうしますか.
結局組長は私のコードをコピーして、私の代わりにジハーバーにアップロードしました(ありがとうございます).👍)
git init -> git checkout -b frontend-min -> git add . -> git commit -m "commit"->
git push origin frontend-min(私の分岐)<-ここで間違いはずっと爆発しています
合併が必要だと言う
次は解決策です!
強制プッシュ(-f)
強制上書きのため、 に注意
2.引く
git pull origin frontend-min
成功!
合併ブランチに関するブログhttps://mylko72.gitbooks.io/git/content/branch/merge.htmlがあります.
あとでまた問題が出たら、よく観察しましょう~
他の人はみんな元気ですが、私はどうしてそうしますか.
結局組長は私のコードをコピーして、私の代わりにジハーバーにアップロードしました(ありがとうございます).👍)
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リポジトリが私のレコードと一致しないためです合併が必要だと言う
次は解決策です!
強制プッシュ
強制上書きのため、
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があります.
あとでまた問題が出たら、よく観察しましょう~
Reference
この問題について(スパルタエンコーディングクラブ制作挑戦ログ2(githubエラー解決)), 我々は、より多くの情報をここで見つけました https://velog.io/@win/스파르타코딩클럽-메이킹챌린지-개발일지2-github오류해결テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol