GitリポジトリのURLが間違っている可能性があります。
.git/config
[remote "origin"]セクションを開いて見つけます。SSHを使用していることを確認してください:
ssh://git@github.com/username/repo.git
[ クローン ] または [ ダウンロード ]をクリックしてsshを選択すると、リポジトリのメインページにSSH URLが表示されます。
AND NOT https
またはgit
1:
https://github.com/username/repo.git
git://github.com/username/repo.git
ユーザー名とパスワードの代わりにSSHキーだけで検証できるようになりました。
Gitはそれを言っている場合'origin' has already been added
、開い.config
たファイルと編集url = "..."
後の一環[remote origin]
としてのurl = ssh://github/username/repo.git
他のサービスについても同様です。アドレスが次のようになっていることを確認します。protocol://something@url
たとえば.git/config
、Azure DevOpsの場合:
[remote "origin"]
url = https://mystore@dev.azure.com/mystore/myproject/
fetch = +refs/heads/*:refs/remotes/origin/*