hi, On Thu, Mar 26, 2009 at 11:53 PM, [email protected] <[email protected]> wrote: > > I tried the following: > git push origin > > I got the following error back: > To lb...@lbase-dev:/var/share/projects/bishop.git/ > ! [rejected] master -> master (non-fast forward) > error: failed to push some refs to 'lb...@lbase-dev:/var/share/ > projects/bishop.git/' > > I am new to git and it seems to be posing a challenge for me.
This is not really related to gitorious as such, but more of a general git question. Anyway, the reason you're seeing "[rejected]" is because the remote origin differs from your local one, so you'd need to do a "git pull" or "git pull --rebase" (if you want your local commits rebased on top of the remote updates) before you can push. Cheers, JS --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Gitorious" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/gitorious?hl=en -~----------~----~----~----~------~----~------~--~---
