I've just pulled a new branch, made some local changes, comited and tried to push. I was given this error: ! [rejected] groups -> groups (non-fast forward) So I tried a to pull but was told Already up-to-date.

Here's what I get pulling then pushing.

~/dev$ git pull origin groups
Already up-to-date.
~/dev$ git push origin groups
To /mnt/ebs/git/repo.git
 ! [rejected]        groups -> groups (non-fast forward)
error: failed to push some refs to '/mnt/ebs/git/repo.git'

Can anyone explain how this can be happening and how I can fix it?

link|improve this question

try running git push with -v – Dan D. Nov 30 '10 at 9:17
@dan: -v doesn't give any more output other than the path to the repo again. Pushing to /mnt/ebs/git/repo.git – Jake Nov 30 '10 at 9:21
i'd look at the hashes of the heads of groups in both repositories they should match but if they didn't that would be the right error if they didn't and the remote wasn't a prefix of the local – Dan D. Nov 30 '10 at 9:26
The absolute best way for you to address this is to view the local and remote branches in gitk (gitk groups origin/groups), and see for yourself how they've diverged. You can directly see the history we have to try to infer from your question. – Jefromi Nov 30 '10 at 13:54
To make things trickier, this is on a server I access via SSH. I assume that means gitk is out of the question. – Jake Nov 30 '10 at 20:36
show 1 more comment
feedback

1 Answer

up vote 3 down vote accepted

When you pulled the branch, did you use the "--track" option (in order to keep you local branch tracking the remote branch). If you did not, it can explain that the "merge" command that does not work.

You can do the merge manually:

git fetch
git merge origin/groups

To compare local and remote repos, I suggest you this command (add it in an alias, it is usefull):

git log --graph --oneline --all --decorate

It will print the project history tree, showing the branch labels. So you will see where your branch and the origin branch diverge.

Note: if you want to preserve a linear history, instead of a "merge", you can do a "rebase" of your local branch on the remote before pushing:

git rebase origin/groups
git push origin groups
link|improve this answer
I've never had any luck with --graph, I have the latest version of git as far as I know but it says it's an unrecognized argument. – Jake Nov 30 '10 at 20:18
Turns out I had a local branch named origin/groups as well as a remote one. – Jake Nov 30 '10 at 21:41
feedback

Your Answer

 
or
required, but never shown

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