Because my git branch will use a lot of Space, so I have deleted many local branches in my local git directory by issues
git branch -D xxxx
However, no space is free up in my hardisk. I run git gc after delete branch.
git gc
However, more harddisk space is used after I run 'git gc'.
Any way that I can free harddisk space after delete the git branch in my harddisk? As I know, I can event recreate the delete branch if I can remember the commit hash. seems the branch content is still keep in git. And is that makes the space is not freed up.