私も同じ問題を抱えていました。問題は、リモートがこれを妨げる何かを持っていたことです。
最初にローカルリポジトリを作成しました。私は追加LICENSE
し、README.md
私の地元とコミットにファイルを。
次に、リモートリポジトリが必要だったので、GitHubで作成しました。ここでは、「このリポジトリをREADMEで初期化する」のチェックを間違えたため、リモートにもREADME.mdが作成されました。
だから今走ったとき
git push --set-upstream origin master
私は得ました:
error: failed to push some refs to 'https://github.com/lokeshub/myTODs.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.
これを克服するために、私はやった
git pull origin master
以下のエラーが発生しました:
From https://github.com/lokeshub/myTODs
branch master -> FETCH_HEAD
fatal: refusing to merge unrelated histories**
私は試した:
git pull origin master --allow-unrelated-histories
結果:
From https://github.com/lokeshub/myTODs
* branch master -> FETCH_HEAD
Auto-merging README.md
CONFLICT (add/add): Merge conflict in README.md
Automatic merge failed;
fix conflicts and then commit the result.
解決:
私はリモートリポジトリを削除し、新しいファイルを作成しました(ファイルを削除するだけで十分だったと思いますREADME
)。その後、以下が機能しました:
git remote rm origin
git remote add origin https://github.com/lokeshub/myTODOs.git
git push --set-upstream origin master
git-rebase
状況を尋ね、答えはフラグを立てるgit-merge