diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-12-22 12:28:06 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-12-22 12:28:06 -0800 |
commit | 3701aa093e2d2d003e0b04529375aeb1bbcb401d (patch) | |
tree | a53d51af62df87987302f970ab7db0f2c537feea /git-rebase--interactive.sh | |
parent | Merge branch 'jk/read-packed-refs-without-path-max' (diff) | |
parent | Show number of TODO items for interactive rebase (diff) | |
download | tgif-3701aa093e2d2d003e0b04529375aeb1bbcb401d.tar.xz |
Merge branch 'ok/rebase-i-count-todo'
* ok/rebase-i-count-todo:
Show number of TODO items for interactive rebase
Diffstat (limited to 'git-rebase--interactive.sh')
-rw-r--r-- | git-rebase--interactive.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh index b64dd28acf..c6a4629cbc 100644 --- a/git-rebase--interactive.sh +++ b/git-rebase--interactive.sh @@ -1031,9 +1031,11 @@ test -s "$todo" || echo noop >> "$todo" test -n "$autosquash" && rearrange_squash "$todo" test -n "$cmd" && add_exec_commands "$todo" +todocount=$(git stripspace --strip-comments <"$todo" | wc -l) + cat >>"$todo" <<EOF -$comment_char Rebase $shortrevisions onto $shortonto +$comment_char Rebase $shortrevisions onto $shortonto ($todocount TODO item(s)) EOF append_todo_help git stripspace --comment-lines >>"$todo" <<\EOF |