Anonymous
Anonymous

Reputation: 152

What is the meaning of the 'tag' in Git repository and how 'tag' works?

I am new to Git Repository. And I don't know about 'tag'. how it works and what can we get from tag?

Upvotes: 0

Views: 71

Answers (1)

Mattias
Mattias

Reputation: 1110

By default, a specific commit is just identified by a hash-code, such as 5h45h32. If you want to give this commit another, more readable name, use tagging: http://git-scm.com/book/en/v2/Git-Basics-Tagging

Upvotes: 2

Related Questions