🙄

gitclone時にThe requested URL returned error: 403が出る時

2023/07/13に公開

gitclone使用とすると、The requested URL returned error: 403となる

git clone https://リポジトリURL.git
Cloning into 'tools'...
fatal: unable to access 'https://リポジトリURL.git': The requested URL returned error: 403

ユーザー名とパスワード、またはSSH鍵の設定が正しくないか、アクセス権がない場合にこのエラーが表示されるらしい。
SSH鍵の設定があれてなれば鍵を読み込み

ssh-add ~/.ssh/sshkey

ユーザー名@をリポジトリURL.gitの前に入れてあげるとcloneできる

git clone https://ユーザー名@gリポジトリURL.git

Discussion