Re: [PATCH] gitk: disable checkout of remote branch
From: Jeff King <hidden>
Date: 2016-06-15 22:47:39
On Wed, Nov 04, 2009 at 07:41:28AM +0100, Sverre Rabbelier wrote:
On Wed, Nov 4, 2009 at 07:17, Tim Mazid [off-list ref] wrote:quoted
So instead of invoking 'git checkout REMOTE/BRANCH', do 'git checkout -b BRANCH REMOTE/BRANCH'.Automagically doing 'git checkout -t remote/branch' when asked to do 'git checkout remote/branch' was suggested earlier on the list and I think there was even a patch that implemented it, not sure what the outcome of the series was. I do remember that Peff was annoyed by it at the GitTogether though so it might be a bad idea.
It's in 'next' now. And for the record, my complaint about its behavior turned out to be partially because I was an idiot. I am still not convinced that we won't later regret leaving the stale local branch sitting around, or that users won't find it confusing to see: $ git checkout foo Branch foo set up to track remote branch foo from origin. Switched to a new branch 'foo' ... time passes ... $ git checkout foo Switched to branch 'foo' Your branch is behind 'origin/foo' by 1 commit, and can be fast-forwarded. (i.e., you do the same thing, but get two very different results, and you have to know how to do the fast-forward. Trivial if you are used to working with branches, but perhaps not if you are just sightseeing). But I am no longer planning on writing a long-winded rant about the feature. ;) -Peff