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

I cloned my repository with:

git clone ssh://xxxxx/xx.git 

but after I changed some files and add and commit them I want to push them to server:

git add xxx.php
git commit -m "TEST"
git push origin master

But the error I get back is:

error: src refspec master does not match any.
error: failed to push some refs to 'ssh://xxxxx.com/project.git'

share|improve this question
1  
This is a DUPLICATE question (or question I'm about to reference is duplicate): while this question has a better title, the answer to the other one (IMHO), is better because it explains what a refspec is. Other question here. – Marco Feb 21 '12 at 14:44
@Marco that question has a lot of noise. This one got to the root of the answer quickly. It's more concise, so it gets my vote. – weberc2 Feb 8 at 3:38

13 Answers

Maybe you just need to commit. I ran into this when I did:

$~ mkdir repo && cd repo
$~ git remote add origin /path/to/origin.git
$~ git add .

Oops! Never committed!

$~ git push -u origin master
error: src refspec master does not match any.

All I had to do was:

$~ git commit -m 'initial commit'
$~ git push origin master

Success!

share|improve this answer
35  
oops, exactly. hard to admit, but it happened to me too. nevertheless, the message is a very user unfriendly one! +1 – stivlo Dec 19 '11 at 11:21
4  
thanks @user581625. the error message is not helpful at all, though. – tugberk Dec 28 '11 at 16:30
19  
First google hit. This is why I love stackoverflow. – Mike Weller Mar 14 '12 at 8:42
2  
Don't just follow this step blindly, look at what @Vi has mentioned, and then modify your push command to correct ref. – Kumar Jun 7 '12 at 16:43
Cheers dude! Will get the hang of this eventually :) – ConorLuddy Nov 8 '12 at 21:14
show 2 more comments
  1. Try git show-ref to see what refs do you have. Is there refs/heads/master?
  2. You can try git push origin HEAD:master as more localref-independent solution.
share|improve this answer
1  
my master branch wasn't on top of commits ! so i created a branch that it was at the end of all branchs and i pushed them to the server: – sinoohe Nov 17 '10 at 4:26
2  
git checkout -b testbranch ; git push origin testbranch:master – sinoohe Nov 17 '10 at 4:27
1  
git show-ref showed my branch; the git push origin HEAD:<branch> worked for me. – gms8994 Nov 25 '11 at 22:01
1  
You just saved me Vi. Thank you for git push origin HEAD:master. But why something like git push --force origin master does not work? – shkschneider Jul 17 '12 at 14:09
What does it say? – Vi. Jul 17 '12 at 14:43

I also had a similar error after deleting all files in my local computer and I have to cleanup all files on the repository.

My error message was something like this:

error: src refspec master does not match any.
error: failed to push some refs to 'git@github ... .git'

and it solved by executing the following commands:

$ touch README
$ git add README
$ git add (all other files)
$ git commit -m 'reinitialized files'
$ git push origin master --force

That's it, hope this helps.

share|improve this answer
This also worked for me, thanks! – alexvance Sep 11 '12 at 13:59
also worked for me, thank you! – Steve Ruiz Jan 3 at 4:01
thanks it helped me – Taruni Jan 22 at 7:45
1  
The other answers did not solve the problem I was having (for instance, I had already committed and still had this error), but doing a git push origin BRANCH --force worked. Thank you! – Lemmings19 Mar 5 at 1:35

I found this happened in a brand new repository after I git added only a directory.

As soon as I added a file (e.g. a README), git push worked great.

share|improve this answer

This happens too when you are in a specific branch and try to push another that do not exist yet, like:

$ git branch
*version-x # you are in this branch
version-y

$ git push -u origin master
error: src refspec master does not match any.
error: failed to push some refs to 'origin_address'

share|improve this answer
1  
LOL. I was trying to push to origin master but that branch didn't exist. It was called origin stable. – penner May 27 at 23:35

This happens when you have added your file, forgot to commit and pushing. So commit the files and then push.

share|improve this answer

missing/skipping git add . or git commit may do that

reinitialize and follow the proper sequence:

git init
git add .
git commit -m 'message'
git *create remote
git push -u origin master
share|improve this answer

I think its because you pushed an invalid branch. Generally because the repository does not have common master branch(maybe development branch). You can use git branch to see branches.

share|improve this answer
  1. My changes were already committed
  2. Force push still gave me the same error.

So I tried Vi's solution:

git push origin HEAD:<remoteBranch> 

This worked for me

share|improve this answer
Thanks a lot, this worked for me too! – Timothée Groleau May 15 at 8:12

You need to config your git if is the first time that you use it with:

git config --global user.email "you@example.com"

git config --global user.name "Your Name"
share|improve this answer

@Aryo In my case I had to use the full url of my local git repository to push the file. First I removed all the files in current directory. Created README added it. Added some more. Then I commited those files and at last pushed them giving proper url to the repository. Here yourrepository is the name of the repository in the server.

$ rm -rf *
$ touch README
$ git add README
$ touch file1 file2
$ git add file1 file2
$ git commit -m "reinitialized files"
$ git push git@localhost:yourrepository.git master --force
share|improve this answer
This answer is not helpful... – cept0 Oct 5 '12 at 13:06

None of the above solutions worked for me when I got the src-refspec error. My workflow:

  • pushed to remote branch (same local branch name)
  • deleted that remote branch
  • changed some stuff & committed
  • pushed again to the same remote branch name (same local branch name)
  • got src-refspec error.

Fixed error by simply making a new branch, and pushing again. (Weird thing was, I couldn't simply just rename the branch - gave me fatal: Branch rename failed)

share|improve this answer

If you want to create new branch remotely in the origin, you need to create the same branch locally first:

$ git clone -b new-branch
$ git push origin new-branch
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.