Solution to Permission Denied (Public Key) for Git Clone

Following error occurs while you are trying to clone a git project. I tried cloning a Github demo project in relation with ReactJS and NodeJS using command such as git clone git@github.com:DavidWells/isomorphic-react-example.git. In this blog, we will look into the solution of this github permission denied (public key) issue related with cloning a project using git clone command.


Solution to Permission Denied (Public Key) Error

  • Add the public key to your Github account
    As shown in the screenshot below, you would be required to add the public key generated using steps mentioned in preceding section. If you go not have a Github.com account, go ahead and open one.Open the file using command such as vi ~/.ssh/id_rsa.pub, copy the key started with ssh-rsa and paste the file in textbox on the page Settings > SSH and GPG keys > New SSH key.
  • Check the resolution
    Execute following command to make sure permission denied (public key) is gone.
    ssh -vT git@github.com
    

    The permission denied error won’t appear anymore. Greater details can be found on this page, Error: Permission denied (publickey)

Solution to sign_and_send_pubkey: signing failed: agent refused operation

The permission denied (public key) also occurs due to the issue such as sign_and_send_pubkey: signing failed: agent refused operation. The following command can help to resolve this issue:

ssh-add


Ajitesh Kumar

I have been recently working in the area of Data analytics including Data Science and Machine Learning / Deep Learning. I am also passionate about different technologies including programming languages such as Java/JEE, Javascript, Python, R, Julia, etc, and technologies such as Blockchain, mobile computing, cloud-native technologies, application security, cloud computing platforms, big data, etc. For latest updates and blogs, follow us on Twitter. I would love to connect with you on Linkedin. Check out my latest book titled as First Principles Thinking: Building winning products using first principles thinking. Check out my other blog, Revive-n-Thrive.com

Recent Posts

How to Learn Effectively: A Holistic Approach

In this fast-changing world, the ability to learn effectively is more valuable than ever. Whether…

8 hours ago

How to Choose Right Statistical Tests: Examples

Last updated: 13th May, 2024 Whether you are a researcher, data analyst, or data scientist,…

11 hours ago

Data Lakehouses Fundamentals & Examples

Last updated: 12th May, 2024 Data lakehouses are a relatively new concept in the data…

1 day ago

Machine Learning Lifecycle: Data to Deployment Example

Last updated: 12th May 2024 In this blog, we get an overview of the machine…

2 days ago

Autoencoder vs Variational Autoencoder (VAE): Differences, Example

Last updated: 12th May, 2024 In the world of generative AI models, autoencoders (AE) and…

2 days ago

Linear Regression T-test: Formula, Example

Last updated: 7th May, 2024 Linear regression is a popular statistical method used to model…

6 days ago