「ERROR: Repository not found. fatal: Could not read from remote repository.」と表示された場合は、

GitGit BASH

目次一覧

 状態:確認中  閲覧数:1,119  投稿日:2020-06-01  更新日:2020-06-01
originを削除する

originを削除する

 閲覧数:343 投稿日:2020-06-01 更新日:2020-06-01
git push origin master
ローカルリポジトリ(masterブランチ)(の変更)を送信して、リモートリポジトリ(「origin」上の同名ブランチ)へ反映させる
user@xxxx MINGW64 /L/3_開発/git/大阪府 (master)
$ git push -u origin master
ERROR: Repository not found.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.


git remote rm
ローカルリポジトリからリモート URL を削除する
※リモートリポジトリをサーバから削除するわけではない(ローカルリポジトリからリモートリポジトリへの参照を削除するだけ)
user@xxxx MINGW64 /L/3_開発/git/大阪府 (master)
$ git remote rm origin

user@xxxx MINGW64 /L/3_開発/git/大阪府 (master)
$ git remote add origin git@github.com:GitHubユーザー名/test_2020_06_01.git

user@xxxx MINGW64 /L/3_開発/git/大阪府 (master)
$ git remote -v
origin  git@github.com:GitHubユーザー名/test_2020_06_01.git (fetch)
origin  git@github.com:GitHubユーザー名/test_2020_06_01.git (push)


git push origin master
ローカルリポジトリ(masterブランチ)(の変更)を送信して、リモートリポジトリ(「origin」上の同名ブランチ)へ反映させる
user@xxxx MINGW64 /L/3_開発/git/大阪府 (master)
$ git push -u origin master
Enumerating objects: 3, done.
Counting objects: 100% (3/3), done.
Delta compression using up to 8 threads
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 244 bytes | 122.00 KiB/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To github.com:GitHubユーザー名/test_2020_06_01.git
 * [new branch]      master -> master
Branch 'master' set up to track remote branch 'master' from 'origin'.



fatal: remote error: is not a valid repository name

GitHub への PUSH へ 1回成功したぐらいでは、Git 理解したことには全然ならない



類似度ページランキング
順位 ページタイトル抜粋
1 「ERROR: Repository not found. fatal: Could not read from remote repository.」と表示された場合は、 40
2 「Email sent! We sent you a new copy of the confirmation email.」と表示されているのに、メール受信出来ない 30
3 「Twitter Developer」審査結果に通り、appを作成。しかし、いつの間にか「User is not Authorized」が表示されていたケース 25
4 「2023 年 4 月 30 日」前後にTwitterアカウントが「SUSPENDED This App has violated Twitter Rules and policies.」と表示された場合には、「Downgrade」ボタンを押した方がよいと思われます。 25
5 意図せずSubModuleが作成された場合は、「$ git rm -rf --cached <対象ファイル or path>」後、「$ git add <対象ファイル or path>」 25
6 「This App has violated Twitter Rules and policies. As a result, it can no longer be accessed. For assistance, submit a support ticket.」と表示された場合、 23
7 「Default branch」ではなく「Your branches」 23
8 意図せずSubModule(ディレクトリに白い矢印)が作成された場合は、「$ git rm -rf --cached <対象ファイル or path>」後、「$ git add <対象ファイル or path>」 23
9 fatal: remote error: is not a valid repository name 23
10 「Windows10」へ「gitfor windows VERSION 2.18.0」をインストール 22
11 「Windows10」へ「gitfor windows VERSION 2.22.0」をインストール 22
12 Knuth–Morris–Pratt algorithm border 21
13 we are unable to approve your developer application at this time. 21
14 「Google AdSense」と「iOSアプリ開発」の共通点 20
15 「Twitter Developer」で、遭遇したエラー系メッセージ 20
16 You currently have access to a subset of Twitter API v2 endpoints 20
17 「Twitter Developers」でApp作成 20
18 Git BASH 作業履歴 2022/10/21 / P28 site-ranking(4Th-Ranking-Service) / 他の「.git」ディレクトリが存在した状態のまま下記gitコマンドを実行したため、意図せず「submodule」化されてしまった例 19
19 Twitterにおける「name」「screen_name」「user_id」の意味は明確に異なる 19
20 Git BASH 作業履歴 2022/10/20 / P48 site-rank(First-Ranking-Service) / 「Add a README」後「git push -f origin main」実行したため、「README」削除 19
2024/11/22 20:35 更新