diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-01-28 16:10:12 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-01-28 16:10:12 -0800 |
commit | a2ec9484c1517305e2e28d64d8d77642f05e9a02 (patch) | |
tree | 7e6486c835da8f8a676e2be9f9f03652e2882a45 /t | |
parent | d10e2cb9d0299a26f43d57dd5bdcf2b3f86a30b3 (diff) | |
parent | 1dc413ebe52bd5dffed63d69a0a239b7fb6ef699 (diff) | |
download | git-a2ec9484c1517305e2e28d64d8d77642f05e9a02.tar.gz git-a2ec9484c1517305e2e28d64d8d77642f05e9a02.tar.xz |
Merge branch 'jk/filter-branch-no-index'
A recent optimization to filter-branch in v2.7.0 introduced a
regression when --prune-empty filter is used, which has been
corrected.
* jk/filter-branch-no-index:
filter-branch: resolve $commit^{tree} in no-index case
Diffstat (limited to 't')
-rwxr-xr-x | t/t7003-filter-branch.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/t/t7003-filter-branch.sh b/t/t7003-filter-branch.sh index 8868e6e09..cb8fbd8e5 100755 --- a/t/t7003-filter-branch.sh +++ b/t/t7003-filter-branch.sh @@ -333,6 +333,14 @@ test_expect_success 'prune empty collapsed merges' ' test_cmp expect actual ' +test_expect_success 'prune empty works even without index/tree filters' ' + git rev-list HEAD >expect && + git commit --allow-empty -m empty && + git filter-branch -f --prune-empty HEAD && + git rev-list HEAD >actual && + test_cmp expect actual +' + test_expect_success '--remap-to-ancestor with filename filters' ' git checkout master && git reset --hard A && |