git push rejected - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T04:10:00Zhttp://stackoverflow.com/feeds/question/620253http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/620253/git-push-rejected4git push rejecteddrozzy2009-03-06T20:16:16Z2009-04-07T19:50:21Z
<p>I give up!
Whenever I try to push I get a stupid: </p>
<pre><code>! [rejected] master -> master (non-fast forward)
error: failed to push some refs to 'git@github.com:companyX/projectX.git'
</code></pre>
<p>Our team has a new git setup. Instead of making private branches I now Forked our main repository (on github) to create my own copy.</p>
<p>At some point what I did was:</p>
<pre><code>$ git fetch upstream master:upstreammaster
</code></pre>
<p>So here is my current setup::</p>
<pre><code>$ git branch
master
* upstreammaster
$ git remote -v
origin git@github.com:userX/projectX.git
upstream git@github.com:companyX/projectX.git
</code></pre>
<p>where userX is my private repository.</p>
<p>So I go and make some changes to my upstreammaster branch, and the PULL from "upstream master".
Everything merges and stuff:</p>
<pre><code>$ git pull upstream master
remote: Counting objects: 95, done.
remote: Compressing objects: 100% (60/60), done.
remote: Total 60 (delta 54), reused 0 (delta 0)
Unpacking objects: 100% (60/60), done.
From git@github.com:companyX/projectX
* branch master -> FETCH_HEAD
Merge made by recursive.
stuff | 165 ++++++++++++--------
stuff | 35 ++--
stuff | 107 ++++++++++---
stuff | 105 ++++++++++---
stuff | 24 ++--
stuff | 9 +-
stuff | 53 +++----
stuff | 44 +++---
stuff | 52 +++----
stuff | 32 +----
stuff | 4 +-
stuff | 138 ++++++++---------
stuff | 58 ++++----
stuff | 115 ++++++++------
stuff | 5 +-
stuff | 39 ++---
stuff | 28 ++--
17 files changed, 560 insertions(+), 453 deletions(-)
</code></pre>
<p>but then when I try to do:</p>
<pre><code>$ git push upstream master
To git@github.com:companyX/projectX.git
! [rejected] master -> master (non-fast forward)
error: failed to push some refs to 'git@github.com:companyX/projectX.git'
</code></pre>
<p>Any help would be greately appreciated! If you need clarification please ask, I will reply!</p>
http://stackoverflow.com/questions/620253/git-push-rejected/620291#6202914Answer by Jarret Hardie for git push rejectedJarret Hardie2009-03-06T20:31:25Z2009-03-06T20:31:25Z<p>When doing a push, try specifying the refspec for the upstream master:</p>
<pre><code>git push upstream upstreammaster:master
</code></pre>
http://stackoverflow.com/questions/620253/git-push-rejected/620317#6203172Answer by robw for git push rejectedrobw2009-03-06T20:37:01Z2009-03-06T20:37:01Z<p>First, attempt to pull from the same refspec that you are trying to push to.</p>
<p>If this does not work, you can force a <code>git push</code> by using <code>git push -f <repo> <refspec></code>, but use caution: this method can cause references to be deleted on the remote repository.</p>
http://stackoverflow.com/questions/620253/git-push-rejected/620906#6209064Answer by Pat Notz for git push rejectedPat Notz2009-03-06T23:47:12Z2009-03-09T13:34:31Z<p>Jarret Hardie is correct. Or, first merge your changes back into master and then try the push. By default, <code>git push</code> pushes all branches that have names that match on the remote -- and no others. So those are your two choices -- either specify it explicitly like Jarret said or merge back to a common branch and then push.</p>
<p>There's been talk about this on the Git mail list and it's clear that this behavior is not about to change anytime soon -- many developers rely on this behavior in their workflows.</p>
<p><strong>Edit/Clarification</strong></p>
<p>Assuming your <code>upstreammaster</code> branch is ready to push then you could do this:</p>
<ol>
<li><p>Pull in any changes from the upstream.</p>
<p>$ git pull upstream master</p></li>
<li><p>Switch to my local master branch</p>
<p>$ git checkout master</p></li>
<li><p>Merge changes in from <code>upstreammaster</code></p>
<p>$ git merge upstreammaster</p></li>
<li><p>Push my changes up</p>
<p>$ git push upstream</p></li>
</ol>
<p>Another thing that you <em>may</em> want to do before pushing is to <code>rebase</code> your changes against upstream/master so that your commits are all together. You can either do that as a separate step between #1 and #2 above (<code>git rebase upstream/master</code>) or you can do it as part of your pull (<code>git pull --rebase upstream master</code>)</p>