completion: disable dwim on "git switch -d"
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>
Thu, 20 Jun 2019 09:55:22 +0000 (16:55 +0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 20 Jun 2019 20:31:51 +0000 (13:31 -0700)
Even though dwim is enabled by default, it will never be done when
--detached is specified. If you force "-d --guess" you will get an error
because --guess then implies -c which cannot be used with -d. So we can
disable dwim in "switch -d". It makes the completion list in this case a
bit shorter.

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
No differences found