{"id":93,"date":"2025-01-07T04:24:59","date_gmt":"2025-01-07T04:24:59","guid":{"rendered":"https:\/\/techkubo.com\/git\/?p=93"},"modified":"2025-05-23T19:17:13","modified_gmt":"2025-05-23T19:17:13","slug":"git-tag","status":"publish","type":"post","link":"https:\/\/techkubo.com\/git\/git-tag\/","title":{"rendered":"Git tag"},"content":{"rendered":"\n<p>Git tag are used to manage software releases. They act as fixed points in your project&#8217;s history, much like branches that do not change. This is particularly useful for marking significant commits, such as public releases, ensuring they remain immutable.<br><br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Initial Example<\/h2>\n\n\n\n<p>In Git, tags are helpful, and you can use them to manage the release. You can think of a Git tag like a branch that will not change. It is significantly more important if you are making a public release.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;git&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">$ git tag -a v1.0.0 -m &quot;Release version 1.0.0&quot;<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">TAG Options<\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Option<\/th><th>Description<\/th><\/tr><\/thead><tbody><tr><td><code>-a<\/code>, <code>--annotate<\/code><\/td><td>Create an unsigned, annotated tag object. Annotated tags store additional metadata such as the tagger name, email, date, and a message.<\/td><\/tr><tr><td><code>-s<\/code>, <code>--sign<\/code><\/td><td>Create a GPG-signed tag, using the default email address&#8217;s key. Tag GPG-signing is controlled by the <code>tag.gpgSign<\/code> configuration variable if it exists, or disabled otherwise. See <code>git-config<\/code>.<\/td><\/tr><tr><td><code>--no-sign<\/code><\/td><td>Override the <code>tag.gpgSign<\/code> configuration variable, which forces each tag to be signed. This option creates a tag without a GPG signature.<\/td><\/tr><tr><td><code>-u &lt;key-id&gt;<\/code>, <code>--local-user=&lt;key-id&gt;<\/code><\/td><td>Create a GPG-signed tag using the specified key. This allows you to sign tags with a specific key instead of the default one.<\/td><\/tr><tr><td><code>-f<\/code>, <code>--force<\/code><\/td><td>Replace an existing tag with the given name instead of failing. Useful for updating tags to point to new commits.<\/td><\/tr><tr><td><code>-d<\/code>, <code>--delete<\/code><\/td><td>Delete existing tags with the given names. This permanently removes the tag from the repository.<\/td><\/tr><tr><td><code>-v<\/code>, <code>--verify<\/code><\/td><td>Verify the GPG signature of the specified tag names. This ensures the tag was created by a trusted source.<\/td><\/tr><tr><td><code>-n&lt;num&gt;<\/code><\/td><td>Print <code>&lt;num&gt;<\/code> lines from the annotation when using <code>-l<\/code>. Implies <code>--list<\/code>. If no number is given, only the first line is printed. If the tag is not annotated, the commit message is displayed instead.<\/td><\/tr><tr><td><code>-l<\/code>, <code>--list<\/code><\/td><td>List tags. Optionally, list tags matching specified patterns, e.g., <code>git tag --list 'v-*'<\/code>.<\/td><\/tr><tr><td><code>--sort=&lt;key&gt;<\/code><\/td><td>Sort tags based on the specified key. Prefix with <code>-<\/code> to sort in descending order. Supports multiple keys and &#8220;version:refname&#8221; sort order. Defaults to <code>tag.sort<\/code> configuration if it exists or lexicographic order otherwise.<\/td><\/tr><tr><td><code>--color[=&lt;when&gt;]<\/code><\/td><td>Respect any colors specified in the <code>--format<\/code> option. Values for <code>&lt;when&gt;<\/code> are <code>always<\/code>, <code>never<\/code>, or <code>auto<\/code> (default is <code>always<\/code>).<\/td><\/tr><tr><td><code>-i<\/code>, <code>--ignore-case<\/code><\/td><td>Perform case-insensitive sorting and filtering of tags.<\/td><\/tr><tr><td><code>--omit-empty<\/code><\/td><td>Do not print a newline after formatted refs where the format expands to an empty string.<\/td><\/tr><tr><td><code>--column[=&lt;options&gt;]<\/code>, <code>--no-column<\/code><\/td><td>Display tag listing in columns. See configuration variable <code>column.tag<\/code> for option syntax. <code>--column<\/code> and <code>--no-column<\/code> without options default to <code>always<\/code> and <code>never<\/code>, respectively. Applicable only when listing tags without annotation lines.<\/td><\/tr><tr><td><code>--contains [&lt;commit&gt;]<\/code><\/td><td>Only list tags which contain the specified commit (defaults to HEAD if not specified). Implies <code>--list<\/code>.<\/td><\/tr><tr><td><code>--no-contains [&lt;commit&gt;]<\/code><\/td><td>Only list tags which don\u2019t contain the specified commit (defaults to HEAD if not specified). Implies <code>--list<\/code>.<\/td><\/tr><tr><td><code>--merged [&lt;commit&gt;]<\/code><\/td><td>Only list tags whose commits are reachable from the specified commit (defaults to HEAD if not specified).<\/td><\/tr><tr><td><code>--no-merged [&lt;commit&gt;]<\/code><\/td><td>Only list tags whose commits are not reachable from the specified commit (defaults to HEAD if not specified).<\/td><\/tr><tr><td><code>--points-at &lt;object&gt;<\/code><\/td><td>Only list tags pointing to the given object (defaults to HEAD if not specified). Implies <code>--list<\/code>.<\/td><\/tr><tr><td><code>-m &lt;msg&gt;<\/code>, <code>--message=&lt;msg&gt;<\/code><\/td><td>Use the given tag message instead of prompting. Multiple <code>-m<\/code> options concatenate their values as separate paragraphs. Implies <code>-a<\/code> if none of <code>-a<\/code>, <code>-s<\/code>, or <code>-u &lt;key-id&gt;<\/code> is given.<\/td><\/tr><tr><td><code>-F &lt;file&gt;<\/code>, <code>--file=&lt;file&gt;<\/code><\/td><td>Take the tag message from the specified file. Use <code>-<\/code> to read the message from standard input. Implies <code>-a<\/code> if none of <code>-a<\/code>, <code>-s<\/code>, or <code>-u &lt;key-id&gt;<\/code> is given.<\/td><\/tr><tr><td><code>--trailer &lt;token&gt;[(=|:)&lt;value&gt;]<\/code><\/td><td>Apply a specified trailer token and value to the tag message. Configuration variables define handling of duplicated trailers, appearance order, and other details. Trailers can be extracted with <code>git tag --list --format=\"%(trailers)\"<\/code>.<\/td><\/tr><tr><td><code>-e<\/code>, <code>--edit<\/code><\/td><td>Edit the message taken from file with <code>-F<\/code> and command line with <code>-m<\/code>.<\/td><\/tr><tr><td><code>--cleanup=&lt;mode&gt;<\/code><\/td><td>Set how the tag message is cleaned up. Modes: <code>verbatim<\/code>, <code>whitespace<\/code>, and <code>strip<\/code> (default).<\/td><\/tr><tr><td><code>--create-reflog<\/code><\/td><td>Create a reflog for the tag. To enable globally, see <code>core.logAllRefUpdates<\/code>. Negated form <code>--no-create-reflog<\/code> overrides an earlier <code>--create-reflog<\/code>, but does not negate <code>core.logAllRefUpdates<\/code> setting.<\/td><\/tr><tr><td><code>--format=&lt;format&gt;<\/code><\/td><td>Interpolate <code>%(fieldname)<\/code> from a tag ref and the object it points at. Defaults to <code>%(refname:strip=2)<\/code> if unspecified.<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Examples<\/h2>\n\n\n\n<h4 class=\"wp-block-heading\">1. Creating an Annotated Tag<\/h4>\n\n\n\n<p>This example demonstrates how to create an annotated tag with a message.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;git&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">$ git tag -a v1.0.0 -m &quot;Release version 1.0.0&quot;<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">2. Listing All Tags<\/h4>\n\n\n\n<p>This example shows how to list all the tags in your repository.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;git&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">$ git tag<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">3. Viewing Tag Details<\/h4>\n\n\n\n<p>This example illustrates how to view the details of a specific tag.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;git&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">$ git show v1.0.0<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">4. Deleting a Tag<\/h4>\n\n\n\n<p>This example explains how to delete a tag from your repository.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;git&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">$ git tag -d v1.0.0<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">5. Pushing Tags to Remote Repository<\/h4>\n\n\n\n<p>This example demonstrates how to push a tag to your remote repository.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;git&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">$ git push origin v1.0.0<\/pre><\/div>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">6. Pushing All Tags<\/h4>\n\n\n\n<p>This example shows how to push all tags to the remote repository.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:false,&quot;styleActiveLine&quot;:false,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;git&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">$ git push origin --tags<\/pre><\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Git tag are used to manage software releases. They act as fixed points in your project&#8217;s history, much like branches [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[1],"tags":[],"class_list":["post-93","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Git tag - GIT Tutorial<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/techkubo.com\/git\/git-tag\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git tag - GIT Tutorial\" \/>\n<meta property=\"og:description\" content=\"Git tag are used to manage software releases. They act as fixed points in your project&#8217;s history, much like branches [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/techkubo.com\/git\/git-tag\/\" \/>\n<meta property=\"og:site_name\" content=\"GIT Tutorial\" \/>\n<meta property=\"article:published_time\" content=\"2025-01-07T04:24:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-23T19:17:13+00:00\" \/>\n<meta name=\"author\" content=\"Manong\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Manong\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/techkubo.com\/git\/git-tag\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/techkubo.com\/git\/git-tag\/\"},\"author\":{\"name\":\"Manong\",\"@id\":\"https:\/\/techkubo.com\/git\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965\"},\"headline\":\"Git tag\",\"datePublished\":\"2025-01-07T04:24:59+00:00\",\"dateModified\":\"2025-05-23T19:17:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/techkubo.com\/git\/git-tag\/\"},\"wordCount\":674,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/techkubo.com\/git\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/techkubo.com\/git\/git-tag\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/techkubo.com\/git\/git-tag\/\",\"url\":\"https:\/\/techkubo.com\/git\/git-tag\/\",\"name\":\"Git tag - GIT Tutorial\",\"isPartOf\":{\"@id\":\"https:\/\/techkubo.com\/git\/#website\"},\"datePublished\":\"2025-01-07T04:24:59+00:00\",\"dateModified\":\"2025-05-23T19:17:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/techkubo.com\/git\/git-tag\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/techkubo.com\/git\/git-tag\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/techkubo.com\/git\/git-tag\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/techkubo.com\/git\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Git tag\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/techkubo.com\/git\/#website\",\"url\":\"https:\/\/techkubo.com\/git\/\",\"name\":\"GIT Tutorial\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/techkubo.com\/git\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/techkubo.com\/git\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/techkubo.com\/git\/#organization\",\"name\":\"GIT Tutorial\",\"url\":\"https:\/\/techkubo.com\/git\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/techkubo.com\/git\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/techkubo.com\/git\/wp-content\/uploads\/sites\/9\/2025\/01\/cropped-Techkubo-logo-1.png\",\"contentUrl\":\"https:\/\/techkubo.com\/git\/wp-content\/uploads\/sites\/9\/2025\/01\/cropped-Techkubo-logo-1.png\",\"width\":1620,\"height\":1166,\"caption\":\"GIT Tutorial\"},\"image\":{\"@id\":\"https:\/\/techkubo.com\/git\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/techkubo.com\/git\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965\",\"name\":\"Manong\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/techkubo.com\/git\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/21a7455736c21887b8fefe0935012d65?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/21a7455736c21887b8fefe0935012d65?s=96&d=mm&r=g\",\"caption\":\"Manong\"},\"sameAs\":[\"https:\/\/techkubo.com\"],\"url\":\"https:\/\/techkubo.com\/git\/author\/manong\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Git tag - GIT Tutorial","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/techkubo.com\/git\/git-tag\/","og_locale":"en_US","og_type":"article","og_title":"Git tag - GIT Tutorial","og_description":"Git tag are used to manage software releases. They act as fixed points in your project&#8217;s history, much like branches [&hellip;]","og_url":"https:\/\/techkubo.com\/git\/git-tag\/","og_site_name":"GIT Tutorial","article_published_time":"2025-01-07T04:24:59+00:00","article_modified_time":"2025-05-23T19:17:13+00:00","author":"Manong","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Manong","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/techkubo.com\/git\/git-tag\/#article","isPartOf":{"@id":"https:\/\/techkubo.com\/git\/git-tag\/"},"author":{"name":"Manong","@id":"https:\/\/techkubo.com\/git\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965"},"headline":"Git tag","datePublished":"2025-01-07T04:24:59+00:00","dateModified":"2025-05-23T19:17:13+00:00","mainEntityOfPage":{"@id":"https:\/\/techkubo.com\/git\/git-tag\/"},"wordCount":674,"commentCount":0,"publisher":{"@id":"https:\/\/techkubo.com\/git\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/techkubo.com\/git\/git-tag\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/techkubo.com\/git\/git-tag\/","url":"https:\/\/techkubo.com\/git\/git-tag\/","name":"Git tag - GIT Tutorial","isPartOf":{"@id":"https:\/\/techkubo.com\/git\/#website"},"datePublished":"2025-01-07T04:24:59+00:00","dateModified":"2025-05-23T19:17:13+00:00","breadcrumb":{"@id":"https:\/\/techkubo.com\/git\/git-tag\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/techkubo.com\/git\/git-tag\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/techkubo.com\/git\/git-tag\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/techkubo.com\/git\/"},{"@type":"ListItem","position":2,"name":"Git tag"}]},{"@type":"WebSite","@id":"https:\/\/techkubo.com\/git\/#website","url":"https:\/\/techkubo.com\/git\/","name":"GIT Tutorial","description":"","publisher":{"@id":"https:\/\/techkubo.com\/git\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/techkubo.com\/git\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/techkubo.com\/git\/#organization","name":"GIT Tutorial","url":"https:\/\/techkubo.com\/git\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techkubo.com\/git\/#\/schema\/logo\/image\/","url":"https:\/\/techkubo.com\/git\/wp-content\/uploads\/sites\/9\/2025\/01\/cropped-Techkubo-logo-1.png","contentUrl":"https:\/\/techkubo.com\/git\/wp-content\/uploads\/sites\/9\/2025\/01\/cropped-Techkubo-logo-1.png","width":1620,"height":1166,"caption":"GIT Tutorial"},"image":{"@id":"https:\/\/techkubo.com\/git\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/techkubo.com\/git\/#\/schema\/person\/b4fa2f01fa4ff2a4e98276ce47115965","name":"Manong","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techkubo.com\/git\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/21a7455736c21887b8fefe0935012d65?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/21a7455736c21887b8fefe0935012d65?s=96&d=mm&r=g","caption":"Manong"},"sameAs":["https:\/\/techkubo.com"],"url":"https:\/\/techkubo.com\/git\/author\/manong\/"}]}},"_links":{"self":[{"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/posts\/93"}],"collection":[{"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/comments?post=93"}],"version-history":[{"count":3,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/posts\/93\/revisions"}],"predecessor-version":[{"id":177,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/posts\/93\/revisions\/177"}],"wp:attachment":[{"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/media?parent=93"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/categories?post=93"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/techkubo.com\/git\/wp-json\/wp\/v2\/tags?post=93"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}