29
26

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

GitHubにPushしようとしたらCould not read from remote repository と怒られた

Posted at

#Could not read from remote repository

このエラーはローカルにクローン(落としてきた)してきたリポジトリがリモートとつながっていないため現れるエラーです

何処にpushすればいいんすか?と迷ってる状態です。だから、ローカルのリポジトリをリモートに登録しましょう。ここに送ってね!とパソコンに教えてあげるのです。

#クローンしてきたURLを使う

私的なスクショで大変申し訳ありません。気にしないでください。下記パブリック(公開)なリポジトリ画面ですが、ここのクローンするときに使った画面のURLを指定してあげれば、リモートに登録できます

スクリーンショット 2016-10-27 20.49.32.png

#コマンド


git remote add master URL

masterはブランチの名前ですから、あなたのブランチがoriginなら


git remote add origin URL

みたいにそれぞれやってください
これで、originというブランチのURLに送ってねと登録することができます

#最後にpushする

登録したブランチ名(master)でpushすれば完了です


git push master

29
26
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
29
26

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?