vote up 2 vote down star

I've got an annotated tag refering to a commit (does it matter if it is annotated?) and no branch refering there. Will the commit be garbage collected after some time?

flag

45% accept rate

2 Answers

vote up 4 vote down check

No, the commit will not be garbage collected. A reference from a tag is sufficient to keep a commit alive.

link|flag
Is this documented in the git manual? – Adrian Panasiuk Jun 28 at 22:31
1  
The git-gc documentation at kernel.org/pub/software/… mentions this under the Notes section. "it will keep not only objects referenced by your current set of branches and tags..." – Greg Hewgill Jun 28 at 22:39
vote up 4 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.