Junio C Hamano <gitster@xxxxxxxxx> wrote: > lists@xxxxxxxxxxxxxxxx (Stefan Haller) writes: > > > When we say > > > > git checkout -b topic origin/master > > > > then it's always a mistake, and what we really meant was > > > > git checkout -b --no-track topic origin/master > > It would have been nice if you explained larger picture of your > workflow, as almost anything else in life, a blanket statement like > the above is not a universal truth. I wasn't saying that "checkout -b topic origin/master" isn't useful for *anybody*; it's just not useful for us. But you are right, I should have explained who "us" is, and what our workflow is, sorry. We're a closed-source company that uses git more or less like an old-style, non-distributed VCS. (This is not because "we don't get it", as someone phrased it elsewhere in this thread, but because it's what makes most sense for us.) The central repository has special significance, because it sends an email for every commit, and it is hooked up to the CI system. For these reasons, everything that people work on is pushed to the central repository, on a topic branch with the same name as the local branch. Also, it is very common for two or more developers to collaborate on a topic branch, and the central repository is the hub for this (developers pull topics with "pull --rebase"). There's no direct exchange between developer's clones, because others on the team wouldn't see a commit mail. Topics are never pushed to master; we have a "merge --no-ff" policy for integration. Sometimes, we need to branch a topic (let's call it B) off another topic (say A), because B needs some of A's code before it's integrated (we'll rebase B onto master once A is merged back, to keep the history clean). Same thing here: we say "checkout -b B origin/A", but we don't want to have B's upstream to be set to origin/A. Again, we forgot to say --no-track. To sum it up, push.default=current is almost perfect for this kind of workflow; except that you still need to configure your upstream branches so that pull works, and status (and the shell prompt) displays the right information. -- Stefan Haller Berlin, Germany http://www.haller-berlin.de/ -- 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