My Various Git Projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a582a82
)
p7000: add test for filter-branch with --prune-empty
author
Devin J. Pohly
<djpohly@gmail.com>
Thu, 23 Feb 2017 08:27:36 +0000
(
02:27
-0600)
committer
Junio C Hamano
<gitster@pobox.com>
Fri, 3 Mar 2017 20:43:37 +0000
(12:43 -0800)
Signed-off-by: Devin J. Pohly <djpohly@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/perf/p7000-filter-branch.sh
patch
|
blob
|
history
diff --git
a/t/perf/p7000-filter-branch.sh
b/t/perf/p7000-filter-branch.sh
index
15ee5d1
..
b029586
100755
(executable)
--- 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