>From Max Hodges, Mon 15 Oct 2012 at 11:04:01 (+0900) : > Max Hodges@DUCHESS /D/Documents/GIT-repos/wre-website (fixed-livevalidation) > $ git checkout --track -b master remote/origin/master > fatal: git checkout: updating paths is incompatible with switching branches. > Did you intend to checkout 'remote/origin/master' which can not be resolved > as c > ommit?
My mistake, it is git checkout --track -b master remotes/origin/master -- or git checkout --track -b master refs/remotes/origin/master -- (the last -- is to force git to consider refs/.../master as a reference rather than a path so the error is more explicit). -- 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.
