Nitin
Nitin

Reputation: 7461

Git repo access issue

I have added ssh key to my git repo through below command and now getting below error:

CMD git config --global url.ssh://[email protected]/.insteadOf https://github.com/

 Error : User1’s-MacBook-Pro:untitled folder ndpiparava$ git clone  https://github.com/XXX-Asft/XXXX
Cloning into 'XXXXX'...
Permission denied (publickey).
fatal: Could not read from remote repository.

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

I have realised that I have made mistake by setting up ssh instead of Https.
Is there any way that I can remove my ip from ssh list for my remote git and start using https?

Upvotes: 1

Views: 1391

Answers (1)

VonC
VonC

Reputation: 1324537

git config --global url.ssh://[email protected]/.insteadOf https://github.com/

This means any url starting with https://github.com/ will be rewritten with ssh://[email protected]/.

There is no "ip from ssh list for my remote git" to remove.

You can simply delete that global config setting.

git config --global --unset url.ssh://[email protected]/.insteadOf

And you can remove your public key you set on your GitHub account.

Upvotes: 1

Related Questions