I've pushed successfully, but I got an error message "error: failed to push..." in git - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T00:59:40Zhttp://stackoverflow.com/feeds/question/459957http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/459957/ive-pushed-successfully-but-i-got-an-error-message-error-failed-to-push-i1I've pushed successfully, but I got an error message "error: failed to push..." in gitJimmy2009-01-20T02:32:49Z2009-06-30T20:53:15Z
<p>Hi all,</p>
<p>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?</p>
<p>Thanks!</p>
<p>The following is the log of my git-push.</p>
<p>[jinuu@foonlean source]$ git push<br>
foonlean@172.16.12.17's password:<bR>
Counting objects: 15, done.<br>
Compressing objects: 100% (8/8), done.<br>
Writing objects: 100% (8/8), 908 bytes, done.<br>
Total 8 (delta 6), reused 0 (delta 0)<br>
To foonlean@172.16.12.17:Repository/source<br>
ab5be38..d2f8993 master -> master<br>
error: failed to push some refs to 'foonlean@172.16.12.17:Repository/source'<br></p>
http://stackoverflow.com/questions/459957/ive-pushed-successfully-but-i-got-an-error-message-error-failed-to-push-i/459964#4599641Answer by Luis Melgratti for I've pushed successfully, but I got an error message "error: failed to push..." in gitLuis Melgratti2009-01-20T02:35:57Z2009-01-20T02:35:57Z<p>you have to pull first. Then push.</p>
http://stackoverflow.com/questions/459957/ive-pushed-successfully-but-i-got-an-error-message-error-failed-to-push-i/1066001#10660010Answer by hughdbrown for I've pushed successfully, but I got an error message "error: failed to push..." in githughdbrown2009-06-30T20:53:15Z2009-06-30T20:53:15Z<p>Force the push:</p>
<pre><code>git push --force
</code></pre>
<p>You won't have to merge the differences, but you could lose some history on your local commits.</p>