前提・実現したいこと
ruby on rails で共同開発をしています。
bitbucketにあるリポジトリをクローンしたのち、サブモジュール取得したいです。(できればSSH接続で)
発生している問題・エラーメッセージ
git clone したのち、
git submodule update --init --recursive
としてサブモジュールを取得しようとすると、下記のエラーメッセージが出ました
Forbidden fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. fatal: clone of 'サブモジュールのurl' into submodule path 'サブモジュールをクローンしたいファイルのパス' failed Failed to clone 'サブモジュールをクローンしたいファイルのパス'. Retry scheduled
試したこと
Please make sure you have the correct access rights and the repository exists.
とあるのでSSH鍵が接続できているか調べました。
$ ssh -T git@bitbucket.org logged in as username You can use git to connect to Bitbucket. Shell access is disabled
と出たので接続に問題はないようです。
よろしくお願いいたします。
補足情報(FW/ツールのバージョンなど)
ruby ver. 2.7.1
rails ver. 5.2.4.3
あなたの回答
tips
プレビュー