When Git tells you it failed to push some refs
April 25, 2008 by Ed Spencer · 19 Comments
I received an unhelpful error while trying to push to a repository on Github today:
git push
To git@github.com:user/repo.git
! [rejected] branchname -> branchname (non-fast forward)
error: failed to push some refs to 'git@github.com:user/repo.git'[/code]
In case you ever have the same problem, all you have to do is a quick git pull first, then you can carry on as normal. Easy when you know how...
I ran the
git pull git@github.com:user/repository.git
And I’m getting the:
“Automatic merge failed; fix conflicts and then commit the result.”
Thanks in advance!
Dammit! XD, I forgot the question man, How are u running the pull command? XD
You need to fix any conflicts, then commit, then push. Run git status to find all files that couldn’t be merged automatically, edit each of them to fix them, then git add . and git commit.
You should then be able to git push (though you may have to git pull again first).
If you’ve named your origin already you should just be able to run “git pull” without naming the source. If you’re on a branch you may have to type “git pull origin branchname”.
Hi, thank you, I solved my problem setting the core.autocrlf to false!
Thanks!
hi – was struggling to find a simple explanation for manual merging conflicts, simple as it is your comment explained it best!
Hey, thanks. Knowing this is sure a lot better than not knowing it!
A life saver. Thanks!
Thanks. I was totally confused.
good job!
It’s not that simple if you then get:
You asked me to pull without telling me which branch you
want to merge with, and ‘branch.master.merge’ in
“if you then get:
You asked me to pull without telling me which branch you want to merge with”
If this happens to you, you need to specify the branch you want to pull. This will normally be master, as in:
git pull origin master
Thanks.
Thanks
Short and sweet post
Worked like magic
These are my favorite blog entries. They come up in the top of a Google search, they are short and sweet, and they work.
Rock on.
What more to say? I know I couldn't be disappointed this soon by git. Thanks a million =)
Hi,
Thanks. Really helps me but wasted some time without knowing this.
Thank you.
very useful, thank you
When I do the “git pull origin master”, I come up short with this:
fatal: Couldn’t find remote ref master
How can that be?