Like most VCSs, Git has the ability to tag specific points in history as being important. Generally, people use this functionality to mark release points (v1.0, and so on). Git uses two main types of tags: lightweight and annotated. However, it is highly recommended to use the annotated tags, because they are stored as full objects in the Git database. They’re checksummed; contain the tagger name, e-mail, and date; have a tagging message; and can be signed and verified with GNU Privacy Guard (GPG).
- Create a tag
Creating an annotated tag in Git is simple. The easiest way is to specify -a when you run the tag command:
$ git tag -a v1.0 -m 'first release'$ git tagv1.0
The -m specifies a tagging message, which is stored with the tag. If you don’t specify a message for an annotated tag, Git launches your editor so you can type it in.
- Show a tag
You can see the tag data along with the commit that was tagged by using the git show command.
$git show v1.0tag v1.0Date: Tue May 13 10:15:48 2014 -0400
first release
commit b46d1aab653e27d7104638582233de02d23cd55fDate: Tue May 13 10:15:24 2014 -0400
first release
diff --git a/haha.txt b/haha.txtnew file mode 100644index 0000000..5d28dfc--- /dev/null+++ b/haha.txt@@ -0,0 +1,2 @@+version 1.0+
- Checkout a tag
You can check out a specific version of the tool by using the command “git checkout v1.0”.
- Delete a tag
You can delete a tag any time if that version is discarded by using the command “git tag –d v1.0”.
$git tag -d v1.0Deleted tag 'v1.0' (was 716206f)$git tagv2.0
- Example
The following example shows how to add a tag to the tool, and how to switch between different versions of the tool.
!!!NOTE: Commit first before adding the tag to the tool.
$git commit -m "First release"[master (root-commit) 132abfe] First release 1 file changed, 3 insertions(+) create mode 100644 test.txt$git tag -a v1.0 -m "the first tag"$git tagv1.0$git showcommit 132abfe4e4ce8f8cefaf2ad9bb1f39c59d5f2b7bDate: Tue May 13 10:37:45 2014 -0400
First release
diff --git a/test.txt b/test.txtnew file mode 100644index 0000000..7c2ac43--- /dev/null+++ b/test.txt@@ -0,0 +1,3 @@+This is a test file for git tag.++First release.
By doing the above procedure, a tag has been added to the tool. Let’s do some modification for the tool and then create another tag for it.
$git commit -m "Second release"[master 3669b09] Second release 1 file changed, 3 insertions(+)$git tag -a v2.0 -m "the second tag"$git tagv1.0v2.0$git show v2.0tag v2.0Date: Tue May 13 10:43:30 2014 -0400
the second tag
commit 3669b097e09991b6dde1cd66b0e29dd7654755ebDate: Tue May 13 10:43:10 2014 -0400
Second release
diff --git a/test.txt b/test.txtindex 7c2ac43..0274106 100644--- a/test.txt+++ b/test.txt@@ -1,3 +1,6 @@ This is a test file for git tag. First release.++Modifications!+Second release.
To see the current version of the tool, use “git describe”.
$git describev2.0
Now, let’s check out the first version of the tool.
$git checkout v1.0Note: checking out 'v1.0'.You are in 'detached HEAD' state. You can look around, make experimentalchanges and commit them, and you can discard any commits you make in thisstate without impacting any branches by performing another checkout.If you want to create a new branch to retain commits you create, you maydo so (now or later) by using -b with the checkout command again. Example:
git checkout -b new_branch_name
HEAD is now at 132abfe... First release$git describev1.0$git status# HEAD detached at v1.0nothing to commit, working directory clean
Now the tool has been switched to the version v1.0. Let’s switch back to version 2.0.
$git checkout v2.0Previous HEAD position was 132abfe... First releaseHEAD is now at 3669b09... Second release$git describev2.0$git status# HEAD detached at v2.0nothing to commit, working directory clean
- References
For more information about Git, please find the free online book Git Pro here: http://git-scm.com/book