On Fri, Mar 08, 2019 at 04:57:48PM +0700, Nguyễn Thái Ngọc Duy wrote: > Similar to automatic detach, this behavior could be confusing because > it can sometimes create a new branch without a user asking it to, > especially when the user is still not aware about this feature. > > In the future, perhaps we could have a config key to disable these > safety nets and let 'switch' do automatic detach or dwim > again. But that will be opt-in after the user knows what is what. For > now give a short option if you want to use it often. As I am late to the patch series (sorry!), has there been already any discussion on that? In my experience, people get confused with detached HEAD state quite often, whereas the automatic creation of a local branch is no problem. So if it is deemed to be too confusing to dwim in this case, could we add a hint suggesting the command? Something like: "No suitable branch <foo> found, however there is a remote tracking branch <origin/foo> that you can siwtch and create with `git switch --guess foo`" (or maybe the one without guess)? And while at it - what should happen, if: - there is a tag named example - no local branch example - a branch at origin/example ... and we switch then? Right now it just gives "cannot find branch", should there be more information? Should it even create a branch example? With switch, switching a branch is unambiguous, even though there is a tag with that name. If I really want to --guess - should I be given more information? Greetings, Eckhard