From 0ef672705b0a21c0e85be55dade972f34cc9dab4 Mon Sep 17 00:00:00 2001 From: Nirmal Khedkar Date: Sun, 16 Feb 2020 01:39:17 +0530 Subject: [PATCH] bisect: remove subdirectory restrictions on git bisect Given that git rebase was never prevented from running in subdirectories, it doesnt make sense to prevent git bisect to run from subdirectories as well. So subdirectory restrictions are now removed from git bisect, i.e.: you can now run git bisect from any git subdirectory. With help from: Johannes Schindelin Signed-off-by: Nirmal Khedkar --- git-bisect.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/git-bisect.sh b/git-bisect.sh index efee12b8b1e6d5..8c1da200e41e3f 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -31,6 +31,7 @@ git bisect run ... Please use "git help bisect" to get the full man page.' +SUBDIRECTORY_OK=Yes OPTIONS_SPEC= . git-sh-setup