From: Johannes Schindelin Date: Tue, 12 Feb 2008 19:50:57 +0000 (+0000) Subject: bisect: use verbatim commit subject in the bisect log X-Git-Tag: v1.5.4.2~25 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f454cdc48f31e64ceae2e8d4f4838349de2f5dee;p=git.git bisect: use verbatim commit subject in the bisect log Due to a typo, the commit subject was shell expanded in the bisect log. That is, if you had some shell pattern in the commit subject, bisect would happily put all matching file names into the log. Signed-off-by: Johannes Schindelin Tested-by: Frans Pop Signed-off-by: Junio C Hamano --- diff --git a/git-bisect.sh b/git-bisect.sh index 393fa3558..6594a6291 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -135,7 +135,7 @@ bisect_write() { *) die "Bad bisect_write argument: $state" ;; esac git update-ref "refs/bisect/$tag" "$rev" - echo "# $state: "$(git show-branch $rev) >>"$GIT_DIR/BISECT_LOG" + echo "# $state: $(git show-branch $rev)" >>"$GIT_DIR/BISECT_LOG" test -z "$nolog" && echo "git-bisect $state $rev" >>"$GIT_DIR/BISECT_LOG" }