summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 947a604)
raw | patch | inline | side by side (parent: 947a604)
author | Junio C Hamano <gitster@pobox.com> | |
Thu, 15 Nov 2007 08:39:57 +0000 (00:39 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Fri, 16 Nov 2007 09:35:58 +0000 (01:35 -0800) |
We do not need to pipe "echo" to "sed" only to strip refs/heads/
from the beginning. We are assuming not-so-ancient shells these
days.
Also there is no need to avoid assuming \012 is the LF; we do
not run on EBCDIC, sorry. Other parts of the script already
uses tr to convert separator to LF that way.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
from the beginning. We are assuming not-so-ancient shells these
days.
Also there is no need to avoid assuming \012 is the LF; we do
not run on EBCDIC, sorry. Other parts of the script already
uses tr to convert separator to LF that way.
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 46a7b8d54a5ccec26c322c19ec821d71af317cf4..3a210335e7e2bdcaebf561b23374a32bec2faffd 100755 (executable)
--- a/git-bisect.sh
+++ b/git-bisect.sh
;;
refs/heads/*)
[ -s "$GIT_DIR/head-name" ] && die "won't bisect on seeked tree"
- echo "$head" | sed 's#^refs/heads/##' >"$GIT_DIR/head-name"
+ echo "${head#refs/heads/}" >"$GIT_DIR/head-name"
;;
*)
die "Bad HEAD - strange symbolic ref"
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/[|]/\
-/g'
+ echo "$_tried" | tr '[|]' '[\012]'
echo "We cannot bisect more!"
exit 2
fi