I've pushed successfully, but I got an error message "error: failed to push..." in git - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T00:59:40Z http://stackoverflow.com/feeds/question/459957 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/459957/ive-pushed-successfully-but-i-got-an-error-message-error-failed-to-push-i 1 I've pushed successfully, but I got an error message "error: failed to push..." in git Jimmy 2009-01-20T02:32:49Z 2009-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#459964 1 Answer by Luis Melgratti for I've pushed successfully, but I got an error message "error: failed to push..." in git Luis Melgratti 2009-01-20T02:35:57Z 2009-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#1066001 0 Answer by hughdbrown for I've pushed successfully, but I got an error message "error: failed to push..." in git hughdbrown 2009-06-30T20:53:15Z 2009-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>