summaryrefslogtreecommitdiff
path: root/git-rebase--interactive.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-03-17 23:01:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-03-17 23:01:29 (GMT)
commitfbcbcee51c5f209922bb1d4409be2fe9a7c66231 (patch)
treea6fa6206de48f21d9e2e3930953e83a8265ad8e9 /git-rebase--interactive.sh
parent860b05b77b876b0e9bd2f32f1d3b518f64c7b87b (diff)
parent2185d3b7ad2ccdfe220d5c4139ff671a66fe7d80 (diff)
downloadgit-fbcbcee51c5f209922bb1d4409be2fe9a7c66231.zip
git-fbcbcee51c5f209922bb1d4409be2fe9a7c66231.tar.gz
git-fbcbcee51c5f209922bb1d4409be2fe9a7c66231.tar.bz2
Merge branch 'es/rebase-i-count-todo'
"git rebase -i" recently started to include the number of commits in the insn sheet to be processed, but on a platform that prepends leading whitespaces to "wc -l" output, the numbers are shown with extra whitespaces that aren't necessary. * es/rebase-i-count-todo: rebase-interactive: re-word "item count" comment rebase-interactive: suppress whitespace preceding item count
Diffstat (limited to 'git-rebase--interactive.sh')
-rw-r--r--git-rebase--interactive.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh
index c96b984..f7deeb0 100644
--- a/git-rebase--interactive.sh
+++ b/git-rebase--interactive.sh
@@ -1030,10 +1030,11 @@ test -n "$autosquash" && rearrange_squash "$todo"
test -n "$cmd" && add_exec_commands "$todo"
todocount=$(git stripspace --strip-comments <"$todo" | wc -l)
+todocount=${todocount##* }
cat >>"$todo" <<EOF
-$comment_char Rebase $shortrevisions onto $shortonto ($todocount TODO item(s))
+$comment_char Rebase $shortrevisions onto $shortonto ($todocount command(s))
EOF
append_todo_help
git stripspace --comment-lines >>"$todo" <<\EOF