On Tuesday, 4 September 2012 20:27:00 UTC+1, Adriano Schmidt wrote:
>
> Hy,
>
> I'm using e-git (git plugin in eclipse).
>
> when I "push" happens this error:
>
> "rejected - non-fast-forward"
>

This means that the remote repo has gained new commits which aren't in your 
local repo. You now can't just push your version of history, as then 
there'd be two versions of history in the remote repo, which is forbidden.

You need to fetch the new history from the remote repo, then either merge 
together the two versions, or rebase your version on top of the remote 
version. There's probably a 'pull' button somewhere (I'm unfamiliar with 
egit) which will achieve this. 

-- 
You received this message because you are subscribed to the Google Groups "Git 
for human beings" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/git-users/-/TC8T-6m8zTMJ.
To post to this group, send email to git-users@googlegroups.com.
To unsubscribe from this group, send email to 
git-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/git-users?hl=en.

Reply via email to