| test_description='git-repack works correctly' |
| test_expect_success '-A option leaves unreachable objects unpacked' ' |
| git commit -m initial_commit && |
| # create a transient branch with unique content |
| git checkout -b transient_branch && |
| echo more content >> file1 && |
| # record the objects created in the database for file, commit, tree |
| fsha1=$(git hash-object file1) && |
| git commit -a -m more_content && |
| csha1=$(git rev-parse HEAD^{commit}) && |
| tsha1=$(git rev-parse HEAD^{tree}) && |
| echo even more content >> file1 && |
| git commit -a -m even_more_content && |
| # delete the transient branch |
| git branch -D transient_branch && |
| # verify objects are packed in repository |
| test 3 = $(git verify-pack -v -- .git/objects/pack/*.idx | |
| grep -e "^$fsha1 " -e "^$csha1 " -e "^$tsha1 " | |
| git reflog expire --expire-unreachable=now --all && |
| # verify objects are retained unpacked |
| test 0 = $(git verify-pack -v -- .git/objects/pack/*.idx | |
| grep -e "^$fsha1 " -e "^$csha1 " -e "^$tsha1 " | |