summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: f3fa183)
raw | patch | inline | side by side (parent: f3fa183)
author | Ralf Wildenhues <Ralf.Wildenhues@gmx.de> | |
Thu, 8 Nov 2007 21:48:24 +0000 (22:48 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Fri, 9 Nov 2007 08:19:24 +0000 (00:19 -0800) |
\n is not portable in a s/// replacement string, only
in the regex part. backslash-newline helps.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
in the regex part. backslash-newline helps.
Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-bisect.sh | patch | blob | history |
diff --git a/git-bisect.sh b/git-bisect.sh
index b74f44df603fa38dd2954aebe7a56a8480450236..1ed44e56ad5021a74b2a0ec3e91849e55d4a67ce 100755 (executable)
--- a/git-bisect.sh
+++ b/git-bisect.sh
if expr "$_tried" : ".*[|].*" > /dev/null ; then
echo "There are only 'skip'ped commit left to test."
echo "The first bad commit could be any of:"
- echo "$_tried" | sed -e 's/[|]/\n/g'
+ echo "$_tried" | sed -e 's/[|]/\
+/g'
echo "We cannot bisect more!"
exit 2
fi