Quantcast
Channel: Why should I care about lightweight vs. annotated tags? - Stack Overflow
Browsing all 9 articles
Browse latest View live

Answer by Ezh for Why should I care about lightweight vs. annotated tags?

For me important difference is lightweight tag doesn't have timestamp. Let's say you added several lightweight tags:git tag v1git tag v2git tag v3and then, maybe later, you want to get last added...

View Article



Answer by Nesha Zoric for Why should I care about lightweight vs. annotated...

Annotated tags store extra metadata such as author name, release notes, tag-message, and date as full objects in the Git database. All this data is important for a public release of your project.git...

View Article

Answer by evilkos for Why should I care about lightweight vs. annotated tags?

I've found the one good use for lightweight tags - creating a release at GitHub in retrospective.We did release our software and we had the necessary commits, we just didn't bother to maintain the...

View Article

Answer by Ciro Santilli OurBigBook.com for Why should I care about...

Push annotated tags, keep lightweight localCertain Git behaviors do differentiate between them in ways that this recommendation is useful e.g.:annotated tags can contain a message, creator, and date...

View Article

Answer by Koraktor for Why should I care about lightweight vs. annotated tags?

My personal, slightly different view on that topic:Annotated tags are those tags meant to be published for other developers, most probably new versions (which should also be signed). Not only to see...

View Article


Answer by cwilper for Why should I care about lightweight vs. annotated tags?

Signing a tag is an easy way to assert the authenticity of a release.This is particularly useful in a DVCS because anyone can clone the repository and modify history (e.g. via git-filter-branch). If a...

View Article

Answer by Cascabel for Why should I care about lightweight vs. annotated tags?

The big plus of an annotated tag is that you know who created it. Just like with commits, sometimes it's nice to know who did it. If you're a developer and you see that v1.7.4 has been tagged (declared...

View Article

Answer by Phil Miller for Why should I care about lightweight vs. annotated...

By default, Git only looks at annotated tags as a baseline for commands like git describe. Think of annotated tags as signposts that have enduring meaning to yourself and others, while lightweight tags...

View Article


Why should I care about lightweight vs. annotated tags?

I switched from Subversion to Git as my day-to-day VCS last year and am still trying to grasp the finer points of "Git-think".The one which has been bothering me lately is "lightweight" vs. annotated...

View Article

Browsing all 9 articles
Browse latest View live




Latest Images