зеркало из https://github.com/microsoft/git.git
git-bisect: typofix
The branch you are on while bisecting is always "bisect", and checking for "refs/heads/bisect*" is wrong. Only check if it is exactly "refs/heads/bisect". Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Родитель
abba9dbbf4
Коммит
673e58389f
|
@ -50,7 +50,7 @@ bisect_start() {
|
|||
head=$(GIT_DIR="$GIT_DIR" git-symbolic-ref HEAD) ||
|
||||
die "Bad HEAD - I need a symbolic ref"
|
||||
case "$head" in
|
||||
refs/heads/bisect*)
|
||||
refs/heads/bisect)
|
||||
if [ -s "$GIT_DIR/head-name" ]; then
|
||||
branch=`cat "$GIT_DIR/head-name"`
|
||||
else
|
||||
|
|
Загрузка…
Ссылка в новой задаче