tags:

views:

43

answers:

1

I cloned a repository with the clone command successfully. BUT, I tried to push after commit and I get this error.

$ git push [email protected]:taraloca/QuitIt.git Permission denied (publickey). fatal: The remote end hung up unexpectedly

Any ideas?

+3  A: 

If it's a public repo, anyone can clone, however a key is required to push. This key provides authentication, and tells Github that you are allowed to push to that repo.

Instructions located here http://help.github.com/msysgit-key-setup/

Joshua
Yep, the error message `Permission denied (publickey)` is indicating that you don't have your authentication key configured correctly (or not at all).
Dan Moulding