up vote 78 down vote favorite
28
share [g+] share [fb]

I just started using git with github. I followed their instructions and ran into errors on the last step. I'm checking in an existing directory that isn't currently source-controlled (project about a week old). Other than that, my use case should be pretty run of the mill.

Here's what's happening:

$ git push origin master
error: src refspec master does not match any.
fatal: The remote end hung up unexpectedly
error: failed to push some refs to 'git@github.com:{username}/{projectname}.git'

Github's instructions:

Global setup:

  Download and install Git
  git config --global user.name "Your Name"
  git config --global user.email {username}@gmail.com

Next steps:

  mkdir projectname
  cd projectname
  git init
  touch README
  git add README
  git commit -m 'first commit'
  git remote add origin git@github.com:{username}/{projectname}.git
  git push origin master
link|improve this question

76% accept rate
2  
It appears that the initial commit didn't work for whatever reason. Git log helped me see whether or not the commit works. I was successful trying it again the next day. Thanks! – thaiyoshi May 6 '09 at 18:30
If you do not add any files, commit or run git init, yoy always get these kind of problems. Therefore, always run git status to see if everything is OK. – user964836 Jan 26 at 20:07
feedback

14 Answers

up vote 46 down vote accepted

The error message leads to the conclusion that you do not have a master branch in your local repository. Either push your main development branch (git push origin my-local-master:master which will rename it to master on github) or make a commit first. You can not push a completely empty repository.

link|improve this answer
4  
I had the "empty repository" problem, since the relevant guide referenced by GitHub (beans.seartipy.com/2008/12/09/…) did not mention the "git commit -m 'first commit'" command. Once I used that, all was fine! – Pascal Lindelauf Sep 1 '09 at 13:55
I had just forgotten to commit my changes. – Nick Josevski Jan 11 at 4:32
feedback

I was having the same issue and then smacked myself in the head because I hadn't actually added my project files.

git add -A
git commit -am "message"
git push origin master
link|improve this answer
Yeah, I had tried the following, but the solution for me was to use your command instead: git add * Correct syntax was: git add . – Martindale Mar 31 '10 at 19:59
1  
worked for me ! – Antoine Benkemoun Aug 25 '10 at 19:48
6  
I wish the git error message would be easier to understand. – Richard Metzler Apr 5 '11 at 12:41
2  
Did the SAME thing...jeesh. Thanks! – cbmeeks Apr 30 '11 at 22:04
feedback

I had the same error, as Bombe said I had no local branch named master in my config, although git branch did list a branch named master...

To fix it just add this to your .git/config

[branch "master"]
    remote = origin
    merge = refs/heads/master

Kinda hacky but does the job

link|improve this answer
feedback

i fixed my problem....

not sure what the problem was but using the gitx interface to commit my staged files, then...

$ git push origin master

worked...

i am having the same problem...

created a new folder added in the bort template files...

$ git commit -m 'first commit'

$ git remote add origin git@github.com:eltonstewart/band-of-strangers.git

$ git push origin master

then i get the same error...

error: src refspec master does not match any.
fatal: The remote end hung up unexpectedly
error: failed to push some refs to 'git@github.com:eltonstewart/band-of-strangers.git'

link|improve this answer
feedback
error: failed to push some refs to 'git@github.com:{username}/{projectname}.git'

Unless you're generalizing the error message, it looks like you literally put git@github.com:{username}/{projectname}.git as your remote Git repo. You should fill in {username} with your GitHub username, and {projectname} with your project's name.

link|improve this answer
feedback

I had the same issue. I deleted the .git folder then followed the following commands

  1. $ git init
  2. $ git add .
  3. $ git remote add origin git@gitorious.org:project/project.git
  4. $ git commit -m "Initial version"
  5. $ git push origin master
link|improve this answer
feedback

I mistankly put a space after the - so instead of -m I had - m Just something to look for.

link|improve this answer
feedback

I think in older version of git, you should commit at least one file first, and then you can "push origin master" once again.

link|improve this answer
feedback

great.. its the issue with empty directory only nothing else. I got my issue resolved by creating one binary file in each directory and then added them.

link|improve this answer
feedback

To actually resolve the issue I used the following command to stage all my files to the commit.

$ git add .
$ git commit -m 'Your message here'
$ git push origin master

The problem I had was that the -u command in git add didn't actually add the new files and the git add -A command wasn't supported on my installation of git. Thus as mentioned in this thread the commit I was trying to stage was empty.

link|improve this answer
feedback

Initital add & commit worked like a charm. I guess it's just a matter of understanding Git's methodology of managing a project within the repository.

After that I've managed to push my data straight-away with no hassle.

link|improve this answer
feedback
cd  app 

git init 

git status 

touch  test 

git add . 

git commit  -a  -m"message to log " 

git commit  -a  -m "message to log" 

git remote add origin 

 git remote add origin git@git.google.net:cherry 

git push origin master:refs/heads/master

git clone git@git.google.net:cherry test1
link|improve this answer
feedback

had the same issue a minute ago and then fixed it

create a repository in github called wordpress...

cd wordpress git init git add -A git commit -am “WordPress 3.1.3″ or any message git remote add origin git@github.com:{username}/wordpress.git git push -u origin master

this should work to resolve the refspec issue

link|improve this answer
feedback

make sure you are on a branch, at least in master branch

type:

git branch

you should see:

ubuntu-user:~/git/turmeric-releng$ git branch

* (no branch)
master

then type:

git checkout master

then all your changes will fit in master branch (or the branch u choose)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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