diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-03-23 11:23:17 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-03-23 11:23:17 -0700 |
commit | f63ed085e20da82a8b7b49d90c61d0eb1b2ed19d (patch) | |
tree | d8f29bb6c7f7816999cfed9f690f7b65a81b487f /t | |
parent | Merge branch 'tb/connect-ipv6-parse-fix' into maint (diff) | |
parent | rebase-interactive: re-word "item count" comment (diff) | |
download | tgif-f63ed085e20da82a8b7b49d90c61d0eb1b2ed19d.tar.xz |
Merge branch 'es/rebase-i-count-todo' into maint
"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 't')
-rwxr-xr-x | t/t3404-rebase-interactive.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/t/t3404-rebase-interactive.sh b/t/t3404-rebase-interactive.sh index a31f7e0430..034eb35cdf 100755 --- a/t/t3404-rebase-interactive.sh +++ b/t/t3404-rebase-interactive.sh @@ -1046,4 +1046,13 @@ test_expect_success 'respect core.abbrev' ' test 4 = $(grep -c "pick [0-9a-f]\{12,\}" todo-list) ' +test_expect_success 'todo count' ' + write_script dump-raw.sh <<-\EOF && + cat "$1" + EOF + test_set_editor "$(pwd)/dump-raw.sh" && + git rebase -i HEAD~4 >actual && + grep "^# Rebase ..* onto ..* ([0-9]" actual +' + test_done |