Jacob Abel <jacobabel@xxxxxxxxxx> writes: > +test_expect_success 'add --quiet -b' ' > + test_when_finished "git branch -D quietnewbranch" && > + test_when_finished "git worktree remove -f -f another-worktree" && > + test_when_finished cat actual >&2 && > + git worktree add --quiet -b quietnewbranch another-worktree 2>actual && > + test_must_be_empty actual > +' It is good to test the --quiet option. It is not good to have the ineffective "cat actual" when test_must_be_empty is already used. Probably the same comment applies to the rest of the patch. Thanks.