On Wed, Jun 27, 2012 at 12:30 PM, mike <[email protected]> wrote: > So from Eclipse I checkout the master called origin/master. > Then I select Team --> 'Merge' and I get the following message: > > "HEAD is not pointing to a branch"
You do not have any local branch pointing to checked out commit now really. You've just checked out a commit as your HEAD that is the head of the origin/master branch. But you need to checkout a new branch master that will be a copy (local fork) of the origin/master or more probably you need to checkout your existing master and merge origin/master into it. -- Serge Matveenko [email protected] http://www.ohloh.net/accounts/lig http://ru.linkedin.com/in/sergematveenko -- You received this message because you are subscribed to the Google Groups "Git for human beings" 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/git-users?hl=en.
