As I understand from this answer, each time I stage a file (or part of), git will create an index of the file as blob for including in the next commit.
The question is: will git keep that content after I unstage that file out of the index (as git suggest: git reset HEAD -- file
). May be in the form of some dangling object as long as I'm not doing a garbage collect.
Please correct me if I'm wrong