vote up 1 vote down star

Hi all,

I've pushed many commits successfully, but I got an error message "error: failed to push some refs" every git-push. I have no idea about this message. Could someone tell me what happened? How do I fix this issue?

Thanks!

The following is the log of my git-push.

[jinuu@foonlean source]$ git push
foonlean@172.16.12.17's password:
Counting objects: 15, done.
Compressing objects: 100% (8/8), done.
Writing objects: 100% (8/8), 908 bytes, done.
Total 8 (delta 6), reused 0 (delta 0)
To foonlean@172.16.12.17:Repository/source
ab5be38..d2f8993 master -> master
error: failed to push some refs to 'foonlean@172.16.12.17:Repository/source'

flag
I have done the pull before the push already. But I still got the same error message every git-push. – Jimmy Jan 20 at 3:49
The behaviour of "git push" without other parameters can depend on various config options. Can you update with the output of "git config -l" and what "git push -v" outputs? – Charles Bailey Jan 20 at 21:26

2 Answers

vote up 0 vote down

Force the push:

git push --force

You won't have to merge the differences, but you could lose some history on your local commits.

link|flag
vote up 1 vote down

you have to pull first. Then push.

link|flag
1  
Sometimes you also have to lift a bit to un-snag it. – BBetances Jan 20 at 2:37

Your Answer

Get an OpenID
or

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