Railsチュートリアル第1章をBash on Ubuntu on Windowsを使って勉強しております。
そこでgit pushを行ったら以下のようなエラーが出ました。
どうすればpushできるのかを知りたいです。
手順としてはinit → add -A → status → commit
→ remote add origin git@bitbucket.org:xxx/hello_app.gitです。
bitbucketにリポジトリ作成済み、SSH鍵登録も終わってます。
$ git push -u origin --all setsockopt IPV6_TCLASS 8: Operation not permitted: To bitbucket.org:yasu1177/hello_app.git ! [rejected] master -> master (fetch first) error: failed to push some refs to 'git@bitbucket.org:xxx/hello_app.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.
エラー文から自分で調べたところ、pullすればいと書いてあったのでしました。
$ git pull origin master setsockopt IPV6_TCLASS 8: Operation not permitted: warning: no common commits remote: Enumerating objects: 3, done. remote: Counting objects: 100% (3/3), done. remote: Compressing objects: 100% (2/2), done. remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 Unpacking objects: 100% (3/3), 577 bytes | 41.00 KiB/s, done. From bitbucket.org:xxx/hello_app * branch master -> FETCH_HEAD * [new branch] master -> origin/master fatal: refusing to merge unrelated histories
この後pushしました。
$ git push -u origin --all setsockopt IPV6_TCLASS 8: Operation not permitted: To bitbucket.org:yasu1177/hello_app.git ! [rejected] master -> master (non-fast-forward) error: failed to push some refs to 'git@bitbucket.org:yasu1177/hello_app.git' hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details.
和訳してもいまいち意味がわからなかったので、解決策があればご教授お願い致します。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/07/02 16:35
2021/07/02 21:44
2021/07/03 08:36