We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e740873 commit c139e58Copy full SHA for c139e58
t/t7003-filter-branch.sh
@@ -396,7 +396,10 @@ test_expect_success '--prune-empty is able to prune entire branch' '
396
git branch prune-entire B &&
397
git filter-branch -f --prune-empty --index-filter "git update-index --remove A.t B.t" prune-entire &&
398
test_must_fail git rev-parse refs/heads/prune-entire &&
399
- test_must_fail git reflog exists refs/heads/prune-entire
+ if test_have_prereq REFFILES
400
+ then
401
+ test_must_fail git reflog exists refs/heads/prune-entire
402
+ fi
403
'
404
405
test_expect_success '--remap-to-ancestor with filename filters' '
0 commit comments