mirror of
https://github.com/git/git.git
synced 2026-04-09 16:30:38 +02:00
bisect--helper: log: allow arbitrary number of arguments
In a later change, we would like to turn bisect into a builtin by renaming bisect--helper. However, there's an oddity that "git bisect log" accepts any number of arguments and it will just ignore them all. Let's prepare for the next step by ignoring any arguments passed to "git bisect--helper log" Signed-off-by: Đoàn Trần Công Danh <congdanhqx@gmail.com> Signed-off-by: Taylor Blau <me@ttaylorr.com>
This commit is contained in:
committed by
Taylor Blau
parent
df63421be9
commit
0da4b538e4
@@ -57,8 +57,6 @@ case "$#" in
|
||||
case "$cmd" in
|
||||
help)
|
||||
git bisect -h ;;
|
||||
log)
|
||||
git bisect--helper log || exit ;;
|
||||
*)
|
||||
git bisect--helper "$cmd" "$@" ;;
|
||||
esac
|
||||
|
||||
Reference in New Issue
Block a user