この記事は3年以上前に書かれた記事で内容が古い可能性があります
git remote addできない
2017-01-02
ブランチがない状態で、リモートリポジトリを登録し、pushしようとすると、not foundとエラーが出る。
% sudo git remote add origin https://github.com/yoshi-island/test.git
% git push origin master remote: Repository not found. fatal: repository 'https://github.com/yoshi-island/test.git/' not found
いけない、いけない、と思い、ブランチを作成してから改めてpushすると、今度は、
already existsというエラーがでる。
% sudo git remote add origin https://github.com/yoshi-island/test.git fatal: remote origin already exists.
じゃあどうすれば良いんだ、と思い調べると色々出てきた。
一度、remote addの操作を取り消して、も一回やるのが早いらしい。
Ruby, Rails, Git再入門 git remote addの操作を取り消す方法
% git remote -v origin https://github.com/yoshi-island/test.git (fetch) origin https://github.com/yoshi-island/test.git (push)
% sudo git remote rm origin
% git push origin master Counting objects: 3, done. Writing objects: 100% (3/3), 217 bytes | 0 bytes/s, done. Total 3 (delta 0), reused 0 (delta 0) To https://github.com/yoshi-island/test.git * [new branch] master -> master