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

So I am new to Git/github and ran into a issue. I created a test project and added to local repo. Now I am trying to add files/project to the remote repo.

Here's what I did (and this worked) -

git remote add origin git://github.com/my_user_name/my_repo.git

Now when I try to push the repo to github, using the following command, I get the following error -

git push origin master

Error -

fatal: remote error: 
You can't push to git://github.com/my_user_name/my_repo.git
Use git@github.com:my_user_name/my_repo.git
share|improve this question
There's a help link (help.github.com) at the bottom of all the github pages. The help describe many topics including this one. I'd suggest reading those and then asking questions about specific things you don't understand. – jamessan Sep 25 '11 at 21:23
5  
if jamessan had pointed to a specific location in the help pages, that would have been more useful. – Deonomo Jul 10 '12 at 19:19

5 Answers

GitHub doesn't support pushing over the git protocol, which is indicated by your use of the URL beginning git://. As the error message says, if you want to push, you should use either the SSH URL git@github.com:my_user_name/my_repo.git or the "smart HTTP" protocol by using the https:// URL that GitHub shows you for your repository.

If you want to change the URL of origin, you can just do:

git remote set-url origin git@github.com:my_user_name/my_repo.git

More information is available here: http://git-scm.com/book/en/Git-Internals-Transfer-Protocols

share|improve this answer
So i changed the URL and retried the push, get this error now - ERROR: my_user_name/my_repo.git doesn't exist. Did you enter it correctly? fatal: The remote end hung up unexpectedly – user310525 Sep 25 '11 at 21:30
   
Is the URL you've set definitely the one that you can copy-and-paste from the page for your repository on GitHub? (It's case sensitive, incidentally.) – Mark Longair Sep 25 '11 at 21:39
well the repo has not been created yet on github, so when I try github.com/my_user_name/my_repo ...not sure if thats what you meant – user310525 Sep 25 '11 at 22:07
1  
OK, well you have to create the repository on GitHub before you can push to it - when you do so, it'll give you instructions on how to clone or push to the repository. – Mark Longair Sep 25 '11 at 22:10
1  
Ok, can i do it from a git command or only on their website? – user310525 Sep 25 '11 at 22:12
show 2 more comments

Mark Longair's solution using git remote set-url... is quite clear. You can also get the same behavior by directly editing this section of the .git/config file:

before:

[remote "origin"]
    fetch = +refs/heads/*:refs/remotes/origin/*
    url = git://github.com/my_user_name/my_repo.git

after:

[remote "origin"]
    fetch = +refs/heads/*:refs/remotes/origin/*
    url = git@github.com:my_user_name/my_repo.git

(And conversely, the git remote set-url... invocation produces the above change.)

share|improve this answer

If you go to http://github.com/my_user_name/my_repo you will see a textbox where you can select the git path to your repository. You'll want to use this!

share|improve this answer

There is a simple solution to this for newbies

edit config file in your local .git directory

Change git: to https: below

[remote "origin"] url = https://github.com/your_username/your_repo

share|improve this answer

Cool. I am also a newbie to Github. My very first exploration of github was successful. When I tried doing it for a second time for a different project, I ended up in the same error saying "github error: .git doesn't exist. Did you enter it correctly?".

After reading through Mark Longair's suggestion, I created a new repo in Github. I did it through this link http://help.github.com/create-a-repo/. A direct link to create a new repository in your github account is https://github.com/repositories/new

It went fine :)

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.