gitlab.comで以下エラーとなりハマってしまったので、備忘録として記録する。
$ git fetch
GitLab: The project you were looking for could not be found.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
久しぶりにgitlabのリポジトリからgit fetch
時にエラー。
その前まではgitでpushも実施していたため、なぜエラーになったのかわからず。gitlabまたなんかやっちまったか〜と思っていた。
解決方法
gitlabへはsshでリポジトリ操作しているが、
Host``````Port
の値がssh接続との整合性が取れておらずアクセスできなかった。前までは操作できてたのにな〜。
Host``````Port
を変更後の値に変更したら解決した。
変更前
$ cat ~/.ssh/config
Host gitlab
User git
Port 443
HostName gitlab.com
IdentityFile ~/.ssh/rsa_gitlab
TCPKeepAlive yes
IdentitiesOnly yes
変更後
$ cat ~/.ssh/config
Host gitlab.com
User git
Port 22
HostName gitlab.com
IdentityFile ~/.ssh/rsa_gitlab
TCPKeepAlive yes
IdentitiesOnly yes
gitlab.com疑ってすいません。。。