{"id":69776,"date":"2021-03-10T13:45:07","date_gmt":"2021-03-10T18:45:07","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=69776"},"modified":"2021-11-11T11:58:14","modified_gmt":"2021-11-11T16:58:14","slug":"git-tags","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/","title":{"rendered":"How to Use Git Tags"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags-1024x538.png\" alt=\"How to use Git Tags\" class=\"wp-image-69884\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>Throughout the life of your project, you will reach various milestones. With Git, you mark significant improvements and modifications with commits, but often there will be events that will require more annotation, such as version changes. In this article, you\u2019ll learn about how to use tags in Git to mark significant events in the life of your project. You can also use these tags as references to which you can <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-undo-commit\/\">reset your project<\/a>.<\/p>\n\n\n\n<p>But why use tags?\u00a0 Tags are one of the many different options you have in Git for providing additional context around improvements and modifications you make to your files over time, and they are relatively easy to use, understand, and integrate into your workflow.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#lightweight-git-tag\">How to Add a Lightweight Tag<\/a><\/li><li><a href=\"#annotated-git-tag\">How to Add an Annotated Tag<\/a><\/li><li><a href=\"#git-tags\">Now That You Know All About Git Tags\u2026<\/a><\/li><\/ul>\n\n\n<!-- Shortcode [cloud-server-cta5] does not exist -->\n\n\n\n<p>If you are new to Git, be sure to check out our guide on <a href=\"https:\/\/www.inmotionhosting.com\/support\/git\/\" target=\"_blank\" rel=\"noopener noreferrer\">learning Git<\/a>.<\/p>\n\n\n\n<p>Before proceeding with tagging, we will want to highlight the different types of tags available. There are two main tag types: <i>lightweight<\/i> and <i>annotated<\/i>.<\/p>\n\n\n\n<p>For a quick tag, merely a reference to a certain commit, the lightweight tag is sufficient. However, the annotated tag is recommended because it contains more detailed metadata that might be helpful to you later.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"lightweight-git-tag\">How to Add a Lightweight Tag<\/h2>\n\n\n\n<p>Adding a lightweight requires only a quick and easy \u201ctag\u201d command with no options:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">git tag <span style=\"color: green;\">v1.0<\/span><\/pre>\n\n\n\n<p>Now, a tag of \u201cv1.0\u201d will reference the most recent commit. To use this tag as a reference use this command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>git show <span style=\"color: green;\">v1.0<\/span><\/code><\/pre>\n\n\n\n<p>This output of this command will be a display of the commit referenced and changes that were made in that commit. The below command line output demonstrates this:<\/p>\n\n\n\n<pre id=\"orgf68a0ed\" class=\"wp-block-preformatted example\">christopher@server $ git show v1.0\ncommit 0659595374f673bdffcc5a9d8b08efb145834132\nAuthor: ChristopherM &lt;chris@example.com&gt;\nDate: Wed Nov 1 10:13:25 2020 -0400\n\nImproved database connection<\/pre>\n\n\n\n<p>You can see this output provides you with a decent amount of information including: the Git user, commit has, and date, as well as the commit message.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"annotated-git-tag\">How to Add an Annotated Tag<\/h2>\n\n\n\n<p>In order to add an annotated tag, you will use the same \u201ctag\u201d command. However, there are a few options to add in this case. Use the <code>-a<\/code> option to make this tag \u201cannotated\u201d and the <code>-m<\/code> command to provide the tag with a message (similar to a commit message).<\/p>\n\n\n\n<pre id=\"org2e2badd\" class=\"wp-block-preformatted example\">git tag -a v1.2 -m \"my version 1.2\"\n<\/pre>\n\n\n\n<p>Then, to show the output of this tag\u2019s reference, us the Git \u201cshow\u201d command again, as in the below command line instance:<\/p>\n\n\n\n<pre id=\"org8e55679\" class=\"wp-block-preformatted example\">christopher@server $ git tag -a v1.2 -m \u201cmy version 1.2\u201c\nchristopher@server $ git show v1.2\ntag v1.2\nTagger: ChristopherM &lt;chris@example.com&gt;\nDate: Wed Nov 1 16:08:36 2017 -0400\n\nmy version 1.2\n\ncommit 0659595374f673bdffcc5a9d8b08efb145834132\nAuthor: ChristopherM &lt;chris@example.com&gt;\nDate: Wed Nov 1 10:13:25 2020 -0400\n\nAdded new test feature\n<\/pre>\n\n\n\n<p>Well done! You now know how to add tags with Git.<\/p>\n\n\n\n<p class=\"alert alert-info\">For more exhaustive detail, check out the complete documentation on <a href=\"https:\/\/git-scm.com\/book\/en\/v2\/Git-Basics-Tagging\" target=\"_blank\" rel=\"noopener noreferrer\">Git tags<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"git-tags\">Now That You Know All About Git Tags\u2026<\/h2>\n\n\n\n<p>Check out these other resources from the Support Center:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/using-git-to-publish-files\/\" target=\"_blank\" rel=\"noopener noreferrer\">Using Git to Publish Files<\/a><\/li><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-server\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to Create Your Own Git Server<\/a><\/li><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-hooks\/\" target=\"_blank\" rel=\"noopener noreferrer\">Git Hooks (and How They Work)<\/a><\/li><\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Throughout the life of your project, you will reach various milestones. With Git, you mark significant improvements and modifications with commits, but often there will be events that will require more annotation, such as version changes. In this article, you\u2019ll learn about how to use tags in Git to mark significant events in the life<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/\"> Read More ><\/a><\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4309],"tags":[],"class_list":["post-69776","post","type-post","status-publish","format-standard","hentry","category-git"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Use Git Tags<\/title>\n<meta name=\"description\" content=\"Git tags allow you to mark commits with special identifying characteristics. Don&#039;t be a Git novice, use tags to make your version controlling easier.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use Git Tags\" \/>\n<meta property=\"og:description\" content=\"Git tags allow you to mark commits with special identifying characteristics. Don&#039;t be a Git novice, use tags to make your version controlling easier.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/\" \/>\n<meta property=\"og:site_name\" content=\"InMotion Hosting Support Center\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/inmotionhosting\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-03-10T18:45:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-11T16:58:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Christopher Maiorana\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Christopher Maiorana\" \/>\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:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How to Use Git Tags\",\"datePublished\":\"2021-03-10T18:45:07+00:00\",\"dateModified\":\"2021-11-11T16:58:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/\"},\"wordCount\":454,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags-1024x538.png\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/\",\"name\":\"How to Use Git Tags\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags-1024x538.png\",\"datePublished\":\"2021-03-10T18:45:07+00:00\",\"dateModified\":\"2021-11-11T16:58:14+00:00\",\"description\":\"Git tags allow you to mark commits with special identifying characteristics. Don't be a Git novice, use tags to make your version controlling easier.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Use Git Tags\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\",\"name\":\"Christopher Maiorana\",\"description\":\"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Use Git Tags","description":"Git tags allow you to mark commits with special identifying characteristics. Don't be a Git novice, use tags to make your version controlling easier.","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:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/","og_locale":"en_US","og_type":"article","og_title":"How to Use Git Tags","og_description":"Git tags allow you to mark commits with special identifying characteristics. Don't be a Git novice, use tags to make your version controlling easier.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-03-10T18:45:07+00:00","article_modified_time":"2021-11-11T16:58:14+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags.png","type":"image\/png"}],"author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How to Use Git Tags","datePublished":"2021-03-10T18:45:07+00:00","dateModified":"2021-11-11T16:58:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/"},"wordCount":454,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags-1024x538.png","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/","name":"How to Use Git Tags","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags-1024x538.png","datePublished":"2021-03-10T18:45:07+00:00","dateModified":"2021-11-11T16:58:14+00:00","description":"Git tags allow you to mark commits with special identifying characteristics. Don't be a Git novice, use tags to make your version controlling easier.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/03\/Git-Tags.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-tags\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Use Git Tags"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f","name":"Christopher Maiorana","description":"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.","sameAs":["https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":{"id":4309,"name":"Git","slug":"git","link":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/"},"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/69776","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/users\/17"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=69776"}],"version-history":[{"count":13,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/69776\/revisions"}],"predecessor-version":[{"id":91526,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/69776\/revisions\/91526"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=69776"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=69776"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=69776"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}