From: Stephen Boyd Date: Mon, 25 Jan 2010 07:06:31 +0000 (-0800) Subject: rebase: replace antiquated sed invocation X-Git-Tag: v1.7.0-rc1~38 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0aa958d;p=git.git rebase: replace antiquated sed invocation Use the modern form of printing a commit subject instead of piping the output of rev-list to sed. Signed-off-by: Stephen Boyd Signed-off-by: Junio C Hamano --- diff --git a/git-rebase.sh b/git-rebase.sh index eddc02875..b5d917827 100755 --- a/git-rebase.sh +++ b/git-rebase.sh @@ -85,10 +85,8 @@ continue_merge () { printf "Already applied: %0${prec}d " $msgnum fi fi - if test -z "$GIT_QUIET" - then - git rev-list --pretty=oneline -1 "$cmt" | sed -e 's/^[^ ]* //' - fi + test -z "$GIT_QUIET" && + git log --format=%s -1 "$cmt" prev_head=`git rev-parse HEAD^0` # save the resulting commit so we can read-tree on it later