Git: How to solve Permission denied (publickey) error when using Git?

GitSshSsh KeysPublic Key

Git Problem Overview


I'm on Mac Snow Leopard and I just installed git.

I just tried

git clone git@thechaw.com:cakebook.git

but that gives me this error:

Initialized empty Git repository in `/Users/username/Documents/cakebook/.git/`
Permission denied (publickey).
fatal: The remote end hung up unexpectedly

What am I missing?
I've also tried doing ssh-keygen with no passphase but still same error.

Git Solutions


Solution 1 - Git

If the user has not generated a ssh public/private key pair set before

This info is working on theChaw but can be applied to all other git repositories which support SSH pubkey authentications. (See [gitolite][1], gitlab or github for example.)

> First start by setting up your own public/private key pair set. This > can use either DSA or RSA, so basically any key you setup will work. > On most systems you can use ssh-keygen.

> - First you'll want to cd into your .ssh directory. Open up the terminal and run: >> cd ~/.ssh && ssh-keygen > - Next you need to copy this to your clipboard. > - On OS X run: cat id_rsa.pub | pbcopy > - On Linux run: cat id_rsa.pub | xclip > - On Windows (via Cygwin/Git Bash) run: cat id_rsa.pub | clip > - On Windows (Powershell) run: Get-Content id_rsa.pub | Set-Clipboard (Thx to @orion elenzil) > - Add your key to your account via the website. > - Finally setup your .gitconfig. > - git config --global user.name "bob" > - git config --global user.email bob@... > (don't forget to restart your command line to make sure the config is reloaded) > > That's it you should be good to clone and checkout.

Further information can be found at https://help.github.com/articles/generating-ssh-keys (thanks to @Lee Whitney) [1]: https://github.com/sitaramc/gitolite

If the user has generated a ssh public/private key pair set before

  • check which key have been authorized on your github or gitlab account settings
  • determine which corresponding private key must be associated from your local computer

eval $(ssh-agent -s)

  • define where the keys are located

ssh-add ~/.ssh/id_rsa

Solution 2 - Git

More extensive troubleshooting and even automated fixing can be done with:

ssh -vT git@github.com

Alternatively, according to below comments, we could issue:

ssh -vT git@gitlab.com

or substitute gitlab/github with whatever Git Instance your organisation is running.

Source: https://help.github.com/articles/error-permission-denied-publickey/

Solution 3 - Git

This error can happen when you are accessing the SSH URL (Read/Write) instead of Git Read-Only URL but you have no write access to that repo.

Sometimes you just want to clone your own repo, e.g. deploy to a server. In this case you actually only need READ-ONLY access. But since that's your own repo, GitHub may display SSH URL if that's your preference. In this situation, if your remote host's public key is not in your GitHub SSH Keys, your access will be denied, which is expected to happen.

An equivalent case is when you try cloning someone else's repo to which you have no write access with SSH URL.

In a word, if your intent is to clone-only a repo, use HTTPS URL (https://github.com/{user_name}/{project_name}.git) instead of SSH URL ([email protected]:{user_name}/{project_name}.git), which avoids (unnecessary) public key validation.


Update: GitHub is displaying HTTPS as the default protocol now and this move can probably reduce possible misuse of SSH URLs.

Solution 4 - Git

The github help link helped me sort out this problem. Looks like the ssh key was not added to the ssh-agent. This is what I ended up doing.

Command 1:

Ensure ssh-agent is enabled. The command starts the ssh-agent in the background:

eval "$(ssh-agent -s)"

Command 2:

Add your SSH key to the ssh-agent:

ssh-add ~/.ssh/id_rsa

Solution 5 - Git

Got the same error report.

Fixed with using the HTTPS instead of the SSH protocol. Since I don't want to set "SSH keys" for a test PC.

Change URL to HTTPS when clone:

git clone https://github.com/USERNAME/REPOSITORY.git

My problem is a little bit different: I have the URL set to SSH when adding an existing local repo to remote, by using:

git remote add origin ssh://github.com/USERNAME/REPOSITORY.git

To fix it, reset the URL to HTTPS:

git remote set-url origin https://github.com/USERNAME/REPOSITORY.git

BTW, you may check your URL using the command:

git remote -v
origin  https://github.com/USERNAME/REPOSITORY.git (fetch)
origin  https://github.com/USERNAME/REPOSITORY.git (push)

Hope this will help some one like me. :D

Solution 6 - Git

Another possibility on Windows, which is not covered in any of these answers, and is not covered in the git or github docs on troubleshooting:

git may be using a different openssh executable than you think it is.

I was receiving the Permission denied (public key) error when trying to clone or pull from github and ssh.dev.azure.com, and I'd followed all the instructions and verified that my SSH keys were setup correctly (from SSH's standpoint) using ssh -vT [email protected] and ssh -vT [email protected]. And was still getting these errors:

git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

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

I eventually figured out that the problem is that Git for Windows, and Windows, both have their own versions of openssh. This is documented here: https://github.com/desktop/desktop/issues/5641

I was relying on the Windows ssh-agent service to store my ssh key passphrases, so git (with it's separate version of openssh) couldn't read my private keys. I consider it a bug that this error message is used - it's misleading.

The fix was:

git config --global core.sshCommand "'C:\Windows\System32\OpenSSH\ssh.exe'"

Or in your ~/.gitconfig:

[core]
	sshCommand = 'C:\\Windows\\System32\\OpenSSH\\ssh.exe'

Perhaps this will be fixed in git for Windows soon, but this is the 2nd time I've wasted time on this issue.

Solution 7 - Git

I was struggling with the same problem that's what I did and I was able to clone the repo. I followed this procedure for Mac.

First Step: Checking if we already have the public SSH key.

  1. Open Terminal.
  2. Enter ls -al ~/.ssh to see if existing SSH keys are present:

Check the directory list to see if you already have a public SSH key. Default public is one of the following d_dsa.pub, id_ecdsa.pub, id_ed25519.pub, id_rsa.pub.

If you don't find then go to step 2 otherwise follow step 3

Step 2: Generating public SSH key

  1. Open Terminal.
  2. Enter the following command with a valid email address that you use for github ssh-keygen -t rsa -b 4096 -C "[email protected]"
  3. You will see the following in your terminal Generating public/private rsa key pair. When it prompts to"Enter a file in which to save the key," press Enter. This accepts the default file location. When it prompts to Enter a file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter] Just press enter again.
  4. At the prompt, "Type a secure passphrase. Enter passphrase (empty for no passphrase): [Type a passphrase]" press enter if you don't want to Enter same passphrase again: [Type passphrase again] press enter again

This will generate id_rsa.pub

Step 3: Adding your SSH key to the ssh-agent

  1. Interminal type eval "$(ssh-agent -s)"

  2. Add your SSH key to the ssh-agent. If you are using an existing SSH key rather than generating a new SSH key, you'll need to replace id_rsa in the command with the name of your existing private key file. Enter this command $ ssh-add -K ~/.ssh/id_rsa

  3. Now copy the SSH key and also add it to you github account

  4. In terminal enter this command with your ssh file name pbcopy < ~/.ssh/id_rsa.pub This will copy the file to your clipboard Now open you github account Go to Settings > SSH and GPG keys > New SSH key Enter title and paste the key from clipboard and save it. Voila you're done.

Solution 8 - Git

This works for me:

ssh-add ~/.ssh/id_rsa

Solution 9 - Git

Visual guide (Windows)

1 of 2. Git batch side

1.1. Open git batch (Download her) enter image description here

1.2. Paste the text below (Change to your GitHub account email)

$ ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

enter image description here

1.3. Press Enter (Accepts the default file location) enter image description here

1.4. Click Enter Twice (Or set SSH key passphrases - Gitbub passphrases docs)

> Enter passphrase (empty for no passphrase): [Type a passphrase]
> Enter same passphrase again: [Type passphrase again]

1.5. The key generate: > Your identification has been saved in /c/Users/user/.ssh/id_rsa...

1.6. Copy the SSH key to your clipboard.

$ clip < ~/.ssh/id_rsa.pub

2 of 2. Github website user side

Under user setting enter image description here

SSH and GPG keys => New SSH key: enter image description here

Paste the code from step 1.6 enter image description here

Done :)

enter image description here


If someone doesn't want to use SSH use HTTPS :

enter image description here

Github docs: https://docs.github.com/en/github/authenticating-to-github/connecting-to-github-with-ssh

Solution 10 - Git

Note that (at least for some projects) you must have a github account with an ssh key.

Look at the keys listed in your authentication agent (ssh-add -l)
(if you don't see any, add one of your existing keys with ssh-add /path/to/your/key (eg: ssh-add ~/.ssh/id_rsa))
(if you don't have any keys, first create one. See: http://rcsg-gsir.imsb-dsgi.nrc-cnrc.gc.ca/documents/internet/node31.html or just google ssh-keygen)

To verify that you have a key associated with your github account:

Go to: https://github.com/settings/ssh

You should see at least one key with a hash key matching one of the hashes you saw when you typed ssh-add -l just a minute ago.

If you don't, add one, then try again.

Solution 11 - Git

If your problem appears out of the blue recently (the latter half of 2021), it may have been caused by incompatible hash algorithms.

As of this post (Oct 2021), the latest version of Git for windows is 2.33.1 (release note), who has embraced the latest OpenSSH 8.8p1 (release note), who in turn has deprecated SHA-1. Meanwhile, if your remote Git repository still sticks to SHA-1, you'll fail the authentication.

To see whether you could have fallen into this case, check the version of your software by:

ssh -V
git --version

Then you should check the "Potentially-incompatible changes" section of OpenSSH 8.8/8.8p release note.

TL;DR

Solution 1: Enable SHA-1 again by adding this to your ~/.ssh/config file:

Host <remote>
    HostkeyAlgorithms +ssh-rsa
	PubkeyAcceptedAlgorithms +ssh-rsa

Remember to replace <remote> with the hostname of your remote repository.

Solution 2: Regenerate your key pair using ECDSA or Ed25519, instead of RSA. For example:

ssh-keygen -t ecdsa -C <comment>

Remember to replace <comment> with your own mnemonic phrase. Then, upload the generated public key to your remote repository.


FYI, I encountered this prompt message when accessing Gitee.com, who uses golang.org/x/crypto/ssh on their server and has posted a page on this issue here (in Mandarin).

git@gitee.com: Permission denied (publickey).

Solution 12 - Git

I met the same issue because of I was thought the difference between SSH and HTTPS is

https://github.com/USERNAME/REPOSITORY.git

ssh://github.com/USERNAME/REPOSITORY.git

So I changed from HTTPS to SSH just by changing https:// to ssh:// nothing on the end of the url was changed.

But the truth is:

https://github.com/USERNAME/REPOSITORY.git

git@github.com:USERNAME/REPOSITORY.git

Which means I changed ssh://github.com/USERNAME/REPOSITORY.git to [email protected]:USERNAME/REPOSITORY.git it works.

Stupid error but hope helps someone!

Solution 13 - Git

I had a slight different situation, I was logged on to a remote server and was using git on the server, when I ran any git command I got the same message

   Permission denied (publickey).
   fatal: The remote end hung up unexpectedly

The way I fixed it was by changing the file /etc/ssh_config on my Mac. from

ForwardAgent no 

to

ForwardAgent yes

Solution 14 - Git

These are the steps I followed in windows 10

  1. Open Git Bash.

  2. Generate Public Key:

    ssh-keygen -t rsa -b 4096 -C "youremailaddress@xyz.com"
    
  3. Copy generated key to the clipboard (works like CTRL+C)

    clip < ~/.ssh/id_rsa.pub
    
  4. Browser, go to Github => Profile=> Settings => SSH and GPG keys => Add Key

  5. Provide the key name and paste clipboard (CTRL+V).

  6. Finally, test your connection (Git bash)

    ssh -T git@github.com
    

enter image description here

Thanks!

Solution 15 - Git

Please try this if nothing is worked out

  1. Generate personal Access token (Setting -> Developer settings -> Personal access tokens -> Generate new token)
  2. git remote set-url origin https://<TOEKN>@github.com/USERNAME/REPOSITORY.git

Note: If a password popup comes, try to enter the token only (try twice)

Solution 16 - Git

I had to copy my ssh keys to the root folder. Google Cloud Compute Engine running Ubuntu 18.04

sudo cp ~/.ssh/* /root/.ssh/

Solution 17 - Git

Solution using gh i.e. Github's official CLI

gh installation

brew install gh

gh login or authentication via cli

gh auth login

repo clone

gh repo clone <username or orgname>/<repo-name>

Example: gh repo clone keshavdulal/sample-repo

Rant: I too was bashing my head when git clone suddenly decided not to work anymore and I don't have the patience or brainpower to relearn ssh/public keys/cryptography from scratch just to clone a freaking repo I already have access to. Also surprised no one mentioned gh in the answers yet

Solution 18 - Git

One of the easiest way

go to terminal-

  git push <Git Remote path> --all

Solution 19 - Git

Guys this is how it worked for me:

  1. Open terminal and go to user [See attached image]
  2. Open .ssh folder and make sure it doesn't have any file like id_rsa or id_rsa.pub otherwise sometimes it wont properly rewrite files
  3. git --version [Check for git installation and version]
  4. git config --global user.email "your email id"
  5. git config --global user.name "your name"
  6. git config --list [make sure you have set your name & email]
  7. cd ~/.ssh
  8. ssh-keygen, it prompts for saving file, allow it
  9. cat ~/.ssh/id_rsa.pub [Access your public key & copy the key to gerrit settings]

Note: You should not be using the sudo command with Git. If you have a very good reason you must use sudo, then ensure you are using it with every command (it's probably just better to use su to get a shell as root at that point). If you generate SSH keys without sudo and then try to use a command like sudo git push, you won't be using the same keys that you generated

enter image description here

enter image description here

Solution 20 - Git

On Windows, make sure all your apps agree on HOME. Msys will surprisingly NOT do it for you. I had to set an environment variable because ssh and git couldn't seem to agree on where my .ssh directory was.

Solution 21 - Git

Are you in a https://github.com/gitextensions/gitextensions/issues/2293#issuecomment-38010146">corporate environment? Is it possible that your system variables have recently changed? Per https://stackoverflow.com/questions/20226147/where-does-github-for-windows-keep-its-ssh-key">this</a> SO answer, ssh keys live at %HOMEDRIVE%%HOMEPATH%\.ssh\id_rsa.pub. So if %HOMEDRIVE% recently changed, git doesn't know where to look for your key, and thus all of the authentication stuff.

Try running ssh -vT [email protected]. Take note of where the identity file is located. For me, that was pointing not to my normal \Users\MyLogin but rather to a network drive, because of a change to environment variables pushed at the network level.

The solution? Since my new %HOMEDRIVE% has the same permissions as my local files, I just moved my .ssh folder there, and called it a day.

Solution 22 - Git

The basic GIT instructions did not make a reference to the SSH key stuff. Following some of the links above, I found a git help page that explains, step-by-step, exactly how to do this for various operating systems (the link will detect your OS and redirect, accordingly):

http://help.github.com/set-up-git-redirect/

It walks through everything needed for GITHub and also gives detailed explanations such as "why add a passphrase when creating an RSA key." I figured I'd post it, in case it helps someone else...

Solution 23 - Git

I hit this error because I needed to give my present working directory permissions 700:

chmod -R 700 /home/ec2-user/

Solution 24 - Git

The easiest solution to this, when you are trying to push to a repository with a different username is:

 git remote set-url origin https://[email protected]/USERNAME/PROJECTNAME.git

Solution 25 - Git

ALWAYS CHECK GITHUB FOR SSH-KEYS GENERATION PROCEDUR, NOT SOME OUTDATED BLOG

https://docs.github.com/en/authentication/connecting-to-github-with-ssh/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent

There you can see that keys are generated with:

ssh-keygen -t ed25519 -C "[email protected]"

So algorithm is ed25519 not rsa or anything else.

Solution 26 - Git

In addition to Rufinus' reply, the shortcut to copy your ssh key to the clipboard in Windows is:

  • type id_rsa.pub | clip

Refs:

Solution 27 - Git

If you have more than one key you may need to do ssh-add private-keyfile

Solution 28 - Git

Its pretty straight forward. Type the below command

ssh-keygen -t rsa -b 4096 -C "youremailid@yourdomain.com"

Generate the SSH key. Open the file and copy the contents. Go to GitHub setting page , and click on SSH key . Click on Add new SSH key, and paste the contents here. That's it :) You shouldn't see the issue again.

Solution 29 - Git

I helped the following:

  1. Open Terminal (Git Bash)
  2. Remove all files in directory .ssh or rename and create new .ssh folder.
  3. To follow in the steps of the instructions:
    1. Generating a new SSH key
    2. Adding your SSH key to the ssh-agent

System: Windows 10.

Solution 30 - Git

I deleted node_modules/ package-lock.json and yarn.lock files. Ran npm i again. This resolved the issue for me.

Solution 31 - Git

I have just experienced this issue while setting my current project, and none of the above solution works. so i tried looking what's really happening on the debug list using the command ssh -vT [email protected]. I notice that my private key filename is not on the list. so renaming the private key filename to 'id_rsa' do the job. hope this could help.

Solution 32 - Git

It worked for me.

Your public key is saved to the id_rsa.pub;file and is the key you upload to your account. You can save this key to the clipboard by running this:

> pbcopy < ~/.ssh/id_rsa.pub

  • copy the SSH key to the clipboard, return to the web portal.
  • In the SSH Key field, paste your SSH key.
  • In the Name field, provide a name for the key.
  • save .

Solution 33 - Git

In my MAC I solved this with:

cp ~/.ssh/github_rsa ~/.ssh/id_rsa

For some reason my git stopped to find the private key in the github_rsa file. This happened in a specific repo. I mean that in other repositories git kept working normally.

I think it's a bug.

I could find this behavior running ssh -vT [email protected]

Solution 34 - Git

In MAC, go to Terminal

  1. Navigate to Home Directory using command - cd ~

  2. cd .ssh && ssh-keygen (For Defaults, click on Enter/Return key for both inputs)

    Generating public/private rsa key pair. Enter file in which to save the key (/Users/username/.ssh/id_rsa):
    Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /Users/usernmae/.ssh/id_rsa.

  3. After that , Do "ls". you will find id_rsa.pub file.

  4. Copy the contents in the id_rsa.pub file (read using the cat command - cat id_rsa.pub)

  5. Navigate to BitBucket or any version tool which supports the SSH keys. Paste the contents using the Add Key Option

That's it. Try to commit and push now.

enter image description here

Solution 35 - Git

For me the actual problem is using text editor to copy the SSH public key to clipboard

If you follow docs.github.com and open .pub file in text editor like Notepad++ to copy SSH public key, Then you will be in trouble.

enter image description here

Instead use

> cat ~/.ssh/id_***.pub | clip

command to copy

Solution 36 - Git

I faced this issue today while trying to setup an existing repository in windows using git bash. The problem was when typing the following:

git clone myreposshurl

In gitbash, ctrl+c and ctrl+v doesn't work. While trying to paste the repository url, I did ctrl+v which introduced some unwanted characters. Finally found and solved the issue when I tried and succeeded cloning another repository. Took 1.5 hours to figure out this stupid mistake.

\302\226git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

If you see characters like \302 like above then this could be one possible cause.

Solution 37 - Git

I was getting a similar Permission denied (publickey) error when trying to run a makefile.

As an alternative to the SSH steps above, you can Install the native GitHub for Mac application.

Click Download GitHub for Mac from - https://help.github.com/articles/set-up-git#platform-mac

Once you complete setup with your git hub account (I also installed the git hub command line tools but unsure if this step is required or not) then I received an email -

[GitHub] A new public key was added to your account

and my error was fixed.

Solution 38 - Git

I was getting the same error. My problem was mixing in sudo.

I couldn't create the directory I was cloning into automatically without prefixing the git clone command with sudo. When I did that, however, my ssh keys where not being properly referenced.

To fix it, I set permissions via chmod on the parent directory I wanted to contain my clone so I could write to it. Then I ran git clone WITHOUT a sudo prefix. It then worked! I changed the permissions back after that. Done.

Solution 39 - Git

I was getting this error because I generated the ssh keys with the wrong email. I was able to connect using ssh, but not using git. The solution was to regenerate the keys using the main email address of my github account.

Solution 40 - Git

It worked for me

ssh -i [your id_rsa path] -T github@github.com

Solution 41 - Git

This strange error, in my case was a symptom of gnome-keyring-daemon incorrectly naming the key to which it required a password.

I follow the steps outlined here, and entered the password via the terminal. The error, aka the confounding GUI interface, was resolved. See: https://askubuntu.com/questions/3045/how-to-disable-gnome-keyring

Solution 42 - Git

In my case, I have reinstalled ubuntu and the user name is changed from previous. In this case the the generated ssh key also differs from the previous one.

The issue solved by just copy the current ssh public key, in the repository. The key will be available in your user's /home/.ssh/id_rsa.pub

Solution 43 - Git

$ cd ~
$ cd .ssh
$ chmod 400 id_rsa

Solution 44 - Git

Execute the terminal as admin.

If the terminal can't see your .ssh it will return that error.

Solution 45 - Git

For me the problem was using sudo:

sudo git clone [email protected]:userName/repo.git was resulting in the error mentioned above.

So to fix this I chown the folder I was trying to clone into

sudo chown -R $USER:$USER /var/www/iqge.org/html

then using this git clone [email protected]:userName/repo.git was successfully done

Solution 46 - Git

After did ssh-keygen part, you might check verification by below:

  1. $ ssh -T [email protected] for testing your SSH connection;

  2. Confirm which user ran "ssh-keygen" command. The public key you generated is followed by that user. The reason in below: > Should the sudo command be used with Git? >> You should not be using the sudo command with Git. If you have a very good reason you must use sudo, then ensure you are using it with every command (it's probably just better to use su to get a shell as root at that point). If you generate SSH keys without sudo and then try to use a command like sudo git push, you won't be using the same keys that you generated.

  3. Confirm you have write permission for the dir that repository will clone to. If not then do it. And you must refresh current user by logout or su etc after updating user group permission.

Solution 47 - Git

Use the ssh link from Github but make sure to not append it with ssh just use what the ssh tab on git hub gives you to clone your repo.

Solution 48 - Git

I was able to get over this issue by following below steps in my ubuntu system. As i was experimenting with passwordless ssh to the system.

sudo vi /etc/ssh/sshd_config

  1. Commented below : #Change to no to disable tunnelled clear text passwords #PasswordAuthentication yes PasswordAuthentication no ----> commented this.

  2. Then restarted the sshd daemon as below.

service sshd restart

Solution 49 - Git

Steps for Mac:

  1. Switch user ( sudo su - jenkins)
  2. Generate key ( ssh-keygen -t rsa -b 4096 -C "username") . Username is one with which you are using with jenkins.
  3. Copy generated public key (cat ~/.ssh/id_rsa.pub).
  4. Paste the key to git account. (Settings -> SSH and CPG keys -> New ssh keys -> Enter name of the key (can be any) and paste the key to description).

Solution 50 - Git

Let me share my experience too,

I was trying to clone some project from the Gerrit repo where I got my public keys in account settings.

On the first attempt to make git clone I got the following error:

Unable to negotiate with XX.XX.XX.XX port XXX: no matching key exchange
method found. Their offer: diffie-hellman-group1-sha1

I figured out that I need to pass the SSH option -oKexAlgorithms=+diffie-hellman-group1-sha1 somehow to git clone.

Hopefully GIT_SSH_COMMAND environment variable did the job:

export GIT_SSH_COMMAND="ssh -oKexAlgorithms=+diffie-hellman-group1-sha1"

But git clone still didn't start to work.. Now it throws the (on topic):

Permission denied (publickey).

I got already SSH keys and didn't want to regenerate them. I checked plain SSH connection to the host and it was ok:

****    Welcome to Gerrit Code Review    ****

  Hi XXXXX, you have successfully connected over SSH.

  Unfortunately, interactive shells are disabled.
  To clone a hosted Git repository, use:

  git clone ssh://[email protected]:xxx/REPOSITORY_NAME.git

I was confused a bit. I started again and turned on the debug for SSH via -vvv option. And I saw the following:

debug1: read_passphrase: can't open /dev/tty: No such device or address

Possibly, it was an overhead for the GIT_SSH_COMMAND env variable - my key was secured with passphrase (and I entered it when I was checking the login to the git repo host).

So, I decided to get rid of the phasphrase then. A simple command helped me:

ssh-keygen -p

Then I entered my passphrase for the "old passphrase" and just hit ENTER twice on the "new passphare" to leave it empty i.e. with no passphrase at all and to confirm my choice.

After that I got the freshly cloned repo on my local disk.

Solution 51 - Git

First of all, I recommend checking some standard things like:

  • login as the correct user in your system,
  • have the right private key in the right location in your system,
  • try to connect with the correct username, hostname, and port,
  • have the public key in the right location (and for the right user) in the external server,
  • restarted the ssh service at your computer:

service ssh restart

(or in another way depending on how you manage services in your system...)

It was enough for me.

Solution 52 - Git

I also had the exact same error.

The problem was that when copying the public key into BitBucket (in my case), a non-visible newline at the end was copy/pasted.

So when copying the public key, first copy it to notepad, remove the empty line at the end, copy it, and paste it.

Solution 53 - Git

Possible that public/private config is incorrect. please follow the steps to do it. execute command anywhere in window

ssh-keygen -o -f ~/.ssh/id_rsa

now go to the c://users/xyz/.ssh/ and open the id_rsa key (path can vary) now go to the gitlab and userprofile> setting>ssh keys and add your key here. now try clone

Solution 54 - Git

When ever I get a new computer at work or switch jobs these are steps I follow setup github access. Mac or Windows

-Go to https://github.[yourWorkDomain].com. navigate to Settings → Developer Settings → Personal access tokens
-Generate a new token
-Set the token description and only check the “repo” box for scope (this will give you repo:status, repo_deployment, public_repo, repo:invite access)

-After your are given the token, copy it (don't navigate away yet, confirm the next two steps work)
-Try to clone the repo again(using “https”)
-For the username use your Username
-For the password, paste the token you copied
-All future requests should work now without asking for your username and password.

Solution 55 - Git

  • Make a new folder Anywhere in your PC (ex. on desktop)

  • Move to that new folder and open git bash there.

& Write Following Code there in bash:

> $ git init > $ git remote add origin https://github.com/YOUR_GITHUB_HANDLER/YOUR_REPO_NAME.git > $ git pull origin master

(See that new folder whether files are pulled or not)

If files are pulled, then first Delete all files/folders from that older folder (where the described error occurs) including .git folder

& Copy all files from new folder including .git and paste it to our older folder where the described error occurs.

This will fetch you remote repo.

If you want to fetch remote repo without removing new changes which you have made locally, then only copy & paste our new .git folder

Now you will able to do $ git push origin master

Solution 56 - Git

SourceTree for Windows case

In case you use SourceTree on Windows you need to create a new keypair using PuTTyGen

enter image description here

The ssh-rsa key from the top section you should insert to

Github => Profile=> Settings => SSH and GPG keys => Add Key

Then save the private key and add it to Pageant (it runs with the SourceTree)

enter image description here

That's all

Solution 57 - Git

You could begin by doing the following in the terminal:

  1. cd ~/.ssh

  2. Generate an ssh key by running: ssh-keygen -o -t rsa -C "[email protected]"

  3. When prompted to enter where to save the key, enter: cat id_rsa.pub | pbcopy

  4. Enter and confirm your passphrase which will then generate your new key.

  5. Inform github about the key by running: cat ~/.ssh/id_rsa.pub

  6. Copy the output then head over to github to create a new SSH key. Paste the copied content into the text area, give it a befitting title then hit the ADD KEY button.

Now you can go about your operations hassle-free.

Solution 58 - Git

I already authenticated with gh, created the new keys, and so on. The problem was that I installed gh with snap in Ubuntu, so the new key generated was in ./snap/gh/502/.ssh/ instead of the regular .ssh path.

I solved it copying everything to .ssh folder with:

cp -a ./snap/gh/502/.ssh/* .ssh/

If not, find your keys with find . -name *.pub

It's still a problem in the digital world to know where you left your keys, I guess.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionteepusinkView Question on Stackoverflow
Solution 1 - GitRufinusView Answer on Stackoverflow
Solution 2 - Gitstevek-proView Answer on Stackoverflow
Solution 3 - GitkavinyaoView Answer on Stackoverflow
Solution 4 - GitjaroraView Answer on Stackoverflow
Solution 5 - GitRobina LiView Answer on Stackoverflow
Solution 6 - GitcrimboView Answer on Stackoverflow
Solution 7 - GitZeeshan ShabbirView Answer on Stackoverflow
Solution 8 - GitWouter SchoofsView Answer on Stackoverflow
Solution 9 - GitEzra SitonView Answer on Stackoverflow
Solution 10 - GitMason BryantView Answer on Stackoverflow
Solution 11 - GitwtjView Answer on Stackoverflow
Solution 12 - GitWilliam HuView Answer on Stackoverflow
Solution 13 - GitRichipalView Answer on Stackoverflow
Solution 14 - GitSatishakumar AwatiView Answer on Stackoverflow
Solution 15 - GitGopala raja naikaView Answer on Stackoverflow
Solution 16 - GitKandarpView Answer on Stackoverflow
Solution 17 - GitKeshavDulalView Answer on Stackoverflow
Solution 18 - GitVizllxView Answer on Stackoverflow
Solution 19 - Gitvikram jeet singhView Answer on Stackoverflow
Solution 20 - GitJasonView Answer on Stackoverflow
Solution 21 - GitAndrewView Answer on Stackoverflow
Solution 22 - GitgMaleView Answer on Stackoverflow
Solution 23 - GitduhaimeView Answer on Stackoverflow
Solution 24 - GitNizar B.View Answer on Stackoverflow
Solution 25 - GitHrvojeView Answer on Stackoverflow
Solution 26 - GitJonathanView Answer on Stackoverflow
Solution 27 - GitkeiosView Answer on Stackoverflow
Solution 28 - Gitkarthik339View Answer on Stackoverflow
Solution 29 - GitTiiGRUSView Answer on Stackoverflow
Solution 30 - GitAnupam ChaplotView Answer on Stackoverflow
Solution 31 - GitRhey M.View Answer on Stackoverflow
Solution 32 - GitHarshikesh KumarView Answer on Stackoverflow
Solution 33 - GitCelinHCView Answer on Stackoverflow
Solution 34 - GitSireesh YarlagaddaView Answer on Stackoverflow
Solution 35 - GitAzarEJView Answer on Stackoverflow
Solution 36 - GitIllegal ArgumentView Answer on Stackoverflow
Solution 37 - GitWickedWView Answer on Stackoverflow
Solution 38 - GitBuvinJView Answer on Stackoverflow
Solution 39 - GitCharles BrunetView Answer on Stackoverflow
Solution 40 - GitMr陈哲View Answer on Stackoverflow
Solution 41 - GitrivanovView Answer on Stackoverflow
Solution 42 - GitSonuView Answer on Stackoverflow
Solution 43 - Git539fView Answer on Stackoverflow
Solution 44 - GitRaul BarrosView Answer on Stackoverflow
Solution 45 - GitBlack MambaView Answer on Stackoverflow
Solution 46 - GitFancoView Answer on Stackoverflow
Solution 47 - Gitpal4lifeView Answer on Stackoverflow
Solution 48 - GitlambzeeView Answer on Stackoverflow
Solution 49 - GitAbhishek BaisView Answer on Stackoverflow
Solution 50 - GitrookView Answer on Stackoverflow
Solution 51 - GitsimhumilecoView Answer on Stackoverflow
Solution 52 - GitMichel KeijzersView Answer on Stackoverflow
Solution 53 - Gitarjun kumarView Answer on Stackoverflow
Solution 54 - GitRayLovelessView Answer on Stackoverflow
Solution 55 - Gitngandhi_369View Answer on Stackoverflow
Solution 56 - GitkkostView Answer on Stackoverflow
Solution 57 - GitaslanView Answer on Stackoverflow
Solution 58 - GitofouView Answer on Stackoverflow