Railsチュートリアル用の空白のサンプルアプリをGitHubに追加しようとすると、このエラーが発生します(明らかに一般的ですが、他の投稿を検索して解決策を探しましたが、自分に合ったものが見つかりませんでした)。
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly
railsチュートリアルが示唆していることを試してみると、両方のエラーが発生します。
$ git remote add origin git@github.com:<username>/sample_app.git
$ git push -u origin master
次に、私が作成したgithubリポジトリが試してみるように言っているのと非常によく似たプロンプトです。
$ git remote add origin https://github.com/<username>/sample_app.git
$ git push -u origin master
私はsample_appディレクトリ内から、そしてコミットした後にこれを行ってきました:
$ git commit -a -m "Improve the README"
(which is the last change I made and the only one before trying to push it to github)
ヘルプ?