Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have followed this instructions below to upload a project.

Global setup:

 Download and install Git
  git config --global user.name "Your Name"
  git config --global user.email tirengarfio@gmail.com
  Add your public key


Next steps:

  mkdir tirengarfio
  cd tirengarfio
  git init
  touch README
  git add README
  git commit -m 'first commit'
  git remote add origin git@github.com:tirengarfio/tirengarfio.git
  git push origin master

But I get this error:

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

share|improve this question
20  
Miku that is not a dumb question. Many people who are using git for the first time, will not know that :) – Gokul N K Mar 3 '12 at 5:44

9 Answers

up vote 11 down vote accepted

Yes, It's a public key Problem. I'm a windows user,and the page below help me resolve this problem.

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

more precisely this link should be helpful

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

share|improve this answer
27  
Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Lix May 29 '12 at 8:18
explain please... – Pavan Katepalli Dec 28 '12 at 3:50

I had to add my public key to github. https://help.github.com/articles/generating-ssh-keys

share|improve this answer
2  
In case if you are running a linux machine, copying the content of id_rsa.pub file might be difficult if you are using emacs or nano. Try copying with a text editor (Notepad, TextEdit, or gedit will do just fine). If you don't have any of these, then you can use vim. – Gokul N K Mar 3 '12 at 5:42
1  
@GokulNK The other alternative is to use xclip, as the page recommends. – handuel Mar 6 at 21:09

Type the following command using your username and repository name:

git clone https://github.com/{user name}/{repo name}

in Ubuntu this works perfectly.

share|improve this answer
Thanks! This one worked for me! – Willem Ellis Dec 9 '12 at 19:32

In my case, I had to setup the public key for another user, as I already had one for my main user. once I switched users and performed the commands in the link above I was able to perform the setup for my test server without a problem.

share|improve this answer
Similar problem - I was signed in as root (and overlooked this) not as the actual user that was setup with SSH. Couldn't get a commit to work for anything. Changing back to correct user resolved problem! – Richard Hollis Apr 19 '12 at 14:32
Definite lack of explanation for how to actually perform the fix. – Richard Jan 6 at 15:11
I shouldn't have to spell it out, this is for you Richard! I was using my non-root account. I had to perform the command from the github help url (help.github.com/articles/generating-ssh-keys#platform-linux) with the sudo prefix. – Dan Power Jan 9 at 13:46

A good one if you have installed git on your computer:

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

share|improve this answer

I had this problem, but none of the solutions above worked. I could clone and fetch but couldn't push. Eventually, I figured out the problem was in the url in my .git/config, it should be:

git@github.com:<username>/<project>

(not ssh://github.com/<username>/<project>.git or https://github.com/<username>/<project>.git).

share|improve this answer

I also have this problem today. The solution is setting your "ssh key". Click the url below, follow the steps, then you will sovle it.

http://github.com/guides/providing-your-ssh-key

share|improve this answer

You need to set up SSH keys.

This GitHub page explains how to generate keys.

If you have an existing key, you copy $HOME/.ssh/id_rsa.pub and paste it into the GitHub SSH settings page.

share|improve this answer

I get the same error and I changed permission of my directory where I tried to clone my repository.

sudo chmod 777 -R {destination where yo want to clone your repo}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.