All posts

Tag

#version-control

1 post

Using Git Tags: A Practical Guide

Tags in Git are references that point to specific points in your repository's history. They're commonly used to mark release points (v1.0, v2.0, etc.) and provide a way to bookmark important commits. Unlike branches, tags don't change once created — they're fixed pointers to a specific commit.

  • git
  • version-control
  • development