summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 7afa845)
raw | patch | inline | side by side (parent: 7afa845)
author | Junio C Hamano <gitster@pobox.com> | |
Sat, 1 Sep 2007 09:17:28 +0000 (02:17 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 1 Sep 2007 09:35:30 +0000 (02:35 -0700) |
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-rebase--interactive.sh | patch | blob | history | |
git-rebase.sh | patch | blob | history |
index ec798a16e98d7c503071d01fd79b3d156e77058c..abc2b1c3e06bf1904ed92a691e917e8718e9e299 100755 (executable)
make_squash_message () {
if test -f "$SQUASH_MSG"; then
- COUNT=$(($(sed -n "s/^# This is [^0-9]*\([0-9]\+\).*/\1/p" \
+ COUNT=$(($(sed -n "s/^# This is [^0-9]*\([1-9][0-9]*\).*/\1/p" \
< "$SQUASH_MSG" | tail -n 1)+1))
echo "# This is a combination of $COUNT commits."
sed -n "2,\$p" < "$SQUASH_MSG"
diff --git a/git-rebase.sh b/git-rebase.sh
index 9cf005677c2936a7c2f14a00cc4e91670e2259f3..3bd66b0a04bac05a3447d68112d4d933480eaf04 100755 (executable)
--- a/git-rebase.sh
+++ b/git-rebase.sh
die "$RESOLVEMSG"
fi
printf "Committed: %0${prec}d " $msgnum
- git rev-list --pretty=oneline -1 HEAD | \
- sed 's/^[a-f0-9]\+ //'
else
printf "Already applied: %0${prec}d " $msgnum
- git rev-list --pretty=oneline -1 "$cmt" | \
- sed 's/^[a-f0-9]\+ //'
fi
+ git rev-list --pretty=oneline -1 "$cmt" | sed -e 's/^[^ ]* //'
prev_head=`git rev-parse HEAD^0`
# save the resulting commit so we can read-tree on it later