NashTech Blog

22 March 2023

Application Engineering

Introduction to Tagging in Git

Like most Version Control Systems, Git has the ability to tag specific points in a repository’s history as important. Generally, people use this feature to mark version points (v1.0, v2.0, etc.). In this blog, you will learn about git tagging, how to list existing tags, how we can create and delete tags,  and the different types of tags. Listing of tags Creating tags Git supports two types of tags: lightweight tags and annotated tags.

Scroll to Top