Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
rebase: replace antiquated sed invocation
author
Stephen Boyd
<bebarino@gmail.com>
Mon, 25 Jan 2010 07:06:31 +0000
(23:06 -0800)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 25 Jan 2010 17:43:45 +0000
(09:43 -0800)
Use the modern form of printing a commit subject instead of piping
the output of rev-list to sed.
Signed-off-by: Stephen Boyd <bebarino@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-rebase.sh
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
6fce515
)
diff --git
a/git-rebase.sh
b/git-rebase.sh
index eddc02875f3802844a4c284aaedef48417f4580d..b5d9178275d7907e5ed580c1c4bfc9256adcc7ba 100755
(executable)
--- a/
git-rebase.sh
+++ b/
git-rebase.sh
@@
-85,10
+85,8
@@
continue_merge () {
printf "Already applied: %0${prec}d " $msgnum
fi
fi
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
prev_head=`git rev-parse HEAD^0`
# save the resulting commit so we can read-tree on it later