]> git.ipfire.org Git - thirdparty/git.git/commit - help.c
help.autocorrect: do not run a command if the command given is junk
authorJohannes Sixt <j6t@kdbg.org>
Tue, 15 Dec 2009 07:57:18 +0000 (08:57 +0100)
committerJunio C Hamano <gitster@pobox.com>
Wed, 16 Dec 2009 00:21:51 +0000 (16:21 -0800)
commit06500a029953164a3110c705ae579ef43548d006
tree581967ce6858e6653e2adc76272604530de65d8a
parentd79f5d17189e70f8a98675a73663113776dcf4fe
help.autocorrect: do not run a command if the command given is junk

If a given command is not found, then help.c tries to guess which one the
user could have meant. If help.autocorrect is 0 or unset, then a list of
suggestions is given as long as the dissimilarity between the given command
and the candidates is not excessively high. But if help.autocorrect was
non-zero (i.e., a delay after which the command is run automatically), the
latter restriction on dissimilarity was not obeyed.

In my case, this happened:

 $ git ..daab02
 WARNING: You called a Git command named '..daab02', which does not exist.
 Continuing under the assumption that you meant 'read-tree'
 in 4.0 seconds automatically...

The patch reuses the similarity limit that is also applied when the list of
suggested commands is printed.

Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
help.c