4
votes
git Will a commit be garbage collected if it’s refered to by tag but not by branch?
tags and branches are both refs, if a ref is pointing to a commit, it's not garbage collected. You can also have custom refs, but those are uncommon.
…
