On Wed, Apr 21, 2010 at 08:13:48PM -0400, Aghiles wrote: > I don't have the information handy but it was most probably pre-1.5. > I don't know if my 'branching habits' are common, but I found that > the old behavior to be more natural with the way we work (creating > branches for quick parallel work). OK, then the behavior did change for you. But you are probably about 3 years too late to complain and try to get it changed. :) > If the current behavior is here to stay, I would humbly suggest to > mention the 'git checkout -b x origin' syntax in the manual (and > 'git branch --track x origin'). It is in the checkout manual, but I think the subtlety that you missed is that "--track" is going to care about whether you start your branch from your local "master" or the remote "master". Even if they're at the same commit, you are interested conceptually in basing your work on what the remote is doing. Maybe we could talk about this in the definition of <start-point>, I guess. You may also be interested to know that "git checkout foo" these days when you have no "foo" branch will do the equivalent of "git checkout -b --track foo origin/foo", which would also do what you want. -Peff -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html