私は研究を行ったので、これは投稿された質問と似ていません。リポジトリを削除した後に致命的なエラーが発生する
私はgithubの上で作成した新しいレポを引くと、このエラーメッセージを取得しようとしている:
$ git pull https://github.com/{my repo}.git
From https://github.com/{my repo}
* branch HEAD -> FETCH_HEAD
fatal: refusing to merge unrelated histories
私はこの試みた:これも
$ git merge origin/master --allow-unrelated-histories
merge: origin/master - not something we can merge
を:
$ git pull --allow-unrelated-histories origin master
remote: Repository not found.
fatal: repository 'https://github.com/{my user name}/20170802.git/' not found
とこれ:
$ git fetch
remote: Repository not found.
fatal: repository 'https://github.com/{my uer name}/20170802.git/' not found
これは、私が(50MB以上の)ムービーファイルをプッシュできなかったレポを削除した後に発生します。 githubでファイルをアップロードできなかった場合:ステージをリセットしてムービーファイルを削除し、自分のコンピュータ上のプロジェクトフォルダに新しいファイルを貼り付け、再度プッシュしようとしましたが、gitbashは私がプッシュしようとしていることを続けました古いムービーファイル 私はWindows 10にgitbashを使用しています。
クローンまたはプルしようとしていますか?また、最初のコードスニペットのURLにユーザー名が表示されていないようです。 – TW80000