From: Devin J. Pohly Date: Thu, 23 Feb 2017 08:27:36 +0000 (-0600) Subject: p7000: add test for filter-branch with --prune-empty X-Git-Tag: v2.13.0-rc0~118^2 X-Git-Url: http://git.bitbasher.net/?a=commitdiff_plain;h=32da7467ebc099e6032590773827884b704980cf;p=git.git p7000: add test for filter-branch with --prune-empty Signed-off-by: Devin J. Pohly Signed-off-by: Junio C Hamano --- diff --git a/t/perf/p7000-filter-branch.sh b/t/perf/p7000-filter-branch.sh index 15ee5d1d53..b029586ccb 100755 --- a/t/perf/p7000-filter-branch.sh +++ b/t/perf/p7000-filter-branch.sh @@ -16,4 +16,9 @@ test_perf 'noop filter' ' git filter-branch -f base..HEAD ' +test_perf 'noop prune-empty' ' + git checkout --detach tip && + git filter-branch -f --prune-empty base..HEAD +' + test_done