>Question: Can you “un-delete” a deleted branch in case we find later there is >something in one of them that we need? Also, other than a smaller list of >branches, what else does it save us? Does it make the repo >smaller?
Alex- Branches are really just a pointer to a commit in the repo. So even deleting a branch is more of a visual cleanup than a repo size change. As far as undeleting them later, they are still there if you knew the commit # to go find them but that's about it. Mike