1. ホーム
  2. git

[解決済み] 新しいコードをGithubにプッシュする問題

2022-04-30 07:12:08

質問

Githubに新しいリポジトリを作成したのですが、Readme.mdファイルしかありません。

新しく作成したRoRプロジェクトがあり、このリポジトリにプッシュしたいと思いました。 以下は、これを実行するために私がターミナルで与えたコマンドと、私が得たエラーです。

git remote add origin https://github.com/aniruddhabarapatre/learn-rails.git

その後、ユーザー名とパスワードを入力しました

git push -u origin master

エラー

To https://github.com/aniruddhabarapatre/learn-rails.git
 ! [rejected]        master -> master (fetch first)
error: failed to push some refs to 'https://github.com/aniruddhabarapatre/learn-rails.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 merge the remote changes (e.g.,
hint: 'git pull') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

初めてGithubのリポジトリに自分のコードをプッシュしたのですが、エラーが出て困っています。私はここで質問されているいくつかの他の質問を検索しましたが、それらのどれも最初に問題がありませんでした。

解決方法は?

を作成した場合 GitHub上のあなたのリポジトリ を作成した場合、あなたは README.md である。 新しいコミット .

あなたのローカルリポジトリはまだこのコミットについて知らないのです。したがって

リモートにない作業が含まれているため、更新が拒否されました。 はローカルにありません。

このアドバイスに従って、探してみてはいかがでしょうか。

まずリモートの変更をマージするとよいでしょう(例. ' git pull ') を使ってから再度プッシュしてください。

ということです。

git pull
# Fix any merge conflicts, if you have a `README.md` locally
git push -u origin master