Git fork

Merge branch 'al/t2400-depipe'

Coding style fix.

* al/t2400-depipe:
t2400: avoid losing exit status to pipes

+4 -2
+4 -2
t/t2400-worktree-add.sh
··· 490 cd under-rebase && 491 set_fake_editor && 492 FAKE_LINES="edit 1" git rebase -i HEAD^ && 493 - git worktree list | grep "under-rebase.*detached HEAD" 494 ) 495 ' 496 ··· 531 git bisect start && 532 git bisect bad && 533 git bisect good HEAD~2 && 534 - git worktree list | grep "under-bisect.*detached HEAD" && 535 test_must_fail git worktree add new-bisect under-bisect && 536 ! test -d new-bisect 537 )
··· 490 cd under-rebase && 491 set_fake_editor && 492 FAKE_LINES="edit 1" git rebase -i HEAD^ && 493 + git worktree list >actual && 494 + grep "under-rebase.*detached HEAD" actual 495 ) 496 ' 497 ··· 532 git bisect start && 533 git bisect bad && 534 git bisect good HEAD~2 && 535 + git worktree list >actual && 536 + grep "under-bisect.*detached HEAD" actual && 537 test_must_fail git worktree add new-bisect under-bisect && 538 ! test -d new-bisect 539 )