summaryrefslogtreecommitdiff
path: root/t/t7101-reset.sh
AgeCommit message (Collapse)AuthorFilesLines
2006-02-17Make git-reset delete empty directoriesLibravatar Shawn Pearce1-0/+63
When git-reset --hard is used and a subdirectory becomes empty (as it contains no tracked files in the target tree) the empty subdirectory should be removed. This matches the behavior of git-checkout-index and git-read-tree -m which would not have created the subdirectory or would have deleted it when updating the working directory. Subdirectories which are not empty will be left behind. This may happen if the subdirectory still contains object files from the user's build process (for example). [jc: simplified the logic a bit, while keeping the test script.]