{"id":94664,"date":"2022-03-03T10:34:01","date_gmt":"2022-03-03T15:34:01","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=94664"},"modified":"2022-03-03T10:34:02","modified_gmt":"2022-03-03T15:34:02","slug":"understanding-git-objects","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/","title":{"rendered":"Understanding Git Objects"},"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\/2022\/03\/Understanding-Git-Objects-1-1024x538.png\" alt=\"Git objects\" class=\"wp-image-94668\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>\nOnce you have learned <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-fundamentals-complete-beginner-guide\/\">the basics of Git<\/a> it\u2019s a good idea to familiarize yourself with the various Git objects, and how they relate to each other. \n<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#keys-and-values\">Keys and Values<\/a><\/li><li><a href=\"#git-objects\">What Are The Git Objects?<\/a><\/li><li><a href=\"#working-with-git-objects\">Working With Git Objects<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"keys-and-values\">Keys and Values<\/h2>\n\n\n\n<p> Every object in Git is assigned a key, specifically a SHA-1 hash, and the value is the object itself.  You have surely noticed each commit is identified by a long string of characters, for example, this output from a simple <code>git log<\/code>: <\/p>\n\n\n\n<pre id=\"org7e4afa2\" class=\"wp-block-preformatted example\">commit e4b6714cd1f7990ab22ddd6938d7e486464c5c76 (HEAD -&gt; master)\nAuthor: Joe Example &lt;joe@example.com&gt;\nDate:   Wed Mar 2 11:01:35 2022 -0500\n\n    changed test file\n<\/pre>\n\n\n\n<p>\nHowever, it is not only commits that receive a SHA-1 hash, but all of the other objects get a hash as well.  This is how Git can quickly identify different types of content, and allows you view objects by their hash, if needed.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"git-objects\">What Are The Git Objects?<\/h2>\n\n\n\n<p>\nHere are the main Git object types:\n<\/p>\n\n\n\n<ul class=\"org-ul wp-block-list\"><li>Commits<\/li><li>Tags<\/li><li>Files (known as \u201cblobs\u201d)<\/li><li>Directories (known as \u201ctrees\u201d)<\/li><\/ul>\n\n\n\n<p>\nGit uses the unique SHA-1 hash assigned to each of these objects for quick and reliable identification.  For example, each tag references a commit; which means the hash associated with that tag always references the hash of the commit it references, even if the tag name changes.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"working-with-git-objects\">Working With Git Objects<\/h2>\n\n\n\n<p>\nFor most every day usage, there are some instances in which you might reference an object by its hash.\n<\/p>\n\n\n\n<p>\nFor example, if you want to <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-checkout\/\">checkout a commit<\/a> you will use the <code>checkout<\/code> command you will use the first 5 or so digits of the commit hash.\n<\/p>\n\n\n\n<p>\nFor referencing branches and tags, you can simply use the name of the branch or tag.  However, using the hash will work as well.\n<\/p>\n\n\n\n<p>\nBut how do you find the hash for a tag?  The Git <code>cat-file<\/code> command can give you information about different objects.  For example, if you wanted to get information about a tag:\n<\/p>\n\n\n\n<pre id=\"orga3d86ef\" class=\"wp-block-preformatted example\">git cat-file -p &lt;tag name&gt;\n<\/pre>\n\n\n\n<p>\nFor example, if you have a tag named <code>v1.0<\/code>, you can run this command:\n<\/p>\n\n\n\n<pre id=\"orge4bc28a\" class=\"wp-block-preformatted example\">git cat-file -p v1.o\n<\/pre>\n\n\n\n<p>\nAnd receive an ouput similiar to this:\n<\/p>\n\n\n\n<pre id=\"org4a8e8c2\" class=\"wp-block-preformatted example\">tree 896d2e35fdc04b2c20d5df395263d95de6af334b\nparent ca2efb98ca118f735389524e6f487a73eac586d9\nauthor Joe Example &lt;joe@example.com&gt; 1646236895 -0500\ncommitter Joe Example &lt;joe@example.com&gt; 1646236895 -0500\n\nchanged test file\n<\/pre>\n\n\n\n<p> This output tells you what \u201ctree\u201d (snapshot) the tag references, what the parent commit hash is, as well as the author and committer name, as well as the commit message. <\/p>\n\n\n<div class=\"jumbotron\">\r\n<p>If you don\u2019t need cPanel, don't pay for it. Only pay for what you need with our scalable <a href=\"https:\/\/www.inmotionhosting.com\/cloud-vps\">Cloud VPS Hosting<\/a>.<\/p>\r\n<p><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>CentOS, Debian, or Ubuntu    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>No Bloatware    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/design.inmotionhosting.com\/assets\/icons\/standard\/check-blue.svg\" alt=\"check mark\" width=\"24\" height=\"24\" \/>SSH and Root Access<\/p>\r\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Once you have learned the basics of Git it\u2019s a good idea to familiarize yourself with the various Git objects, and how they relate to each other. Keys and Values What Are The Git Objects? Working With Git Objects Keys and Values Every object in Git is assigned a key, specifically a SHA-1 hash, and<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/\"> 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-94664","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>Understanding Git Objects | InMotion Hosting<\/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:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Understanding Git Objects | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Once you have learned the basics of Git it\u2019s a good idea to familiarize yourself with the various Git objects, and how they relate to each other. Keys and Values What Are The Git Objects? Working With Git Objects Keys and Values Every object in Git is assigned a key, specifically a SHA-1 hash, and Read More &gt;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/\" \/>\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=\"2022-03-03T15:34:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-03T15:34:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1-1024x538.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=\"2 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\/understanding-git-objects\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"Understanding Git Objects\",\"datePublished\":\"2022-03-03T15:34:01+00:00\",\"dateModified\":\"2022-03-03T15:34:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/\"},\"wordCount\":356,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1-1024x538.png\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/\",\"name\":\"Understanding Git Objects | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1-1024x538.png\",\"datePublished\":\"2022-03-03T15:34:01+00:00\",\"dateModified\":\"2022-03-03T15:34:02+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Understanding Git Objects\"}]},{\"@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":"Understanding Git Objects | InMotion Hosting","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\/understanding-git-objects\/","og_locale":"en_US","og_type":"article","og_title":"Understanding Git Objects | InMotion Hosting","og_description":"Once you have learned the basics of Git it\u2019s a good idea to familiarize yourself with the various Git objects, and how they relate to each other. Keys and Values What Are The Git Objects? Working With Git Objects Keys and Values Every object in Git is assigned a key, specifically a SHA-1 hash, and Read More >","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2022-03-03T15:34:01+00:00","article_modified_time":"2022-03-03T15:34:02+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1-1024x538.png","type":"","width":"","height":""}],"author":"Christopher Maiorana","twitter_card":"summary_large_image","twitter_creator":"@InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"Christopher Maiorana","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"Understanding Git Objects","datePublished":"2022-03-03T15:34:01+00:00","dateModified":"2022-03-03T15:34:02+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/"},"wordCount":356,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1-1024x538.png","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/","name":"Understanding Git Objects | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1-1024x538.png","datePublished":"2022-03-03T15:34:01+00:00","dateModified":"2022-03-03T15:34:02+00:00","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/03\/Understanding-Git-Objects-1.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/understanding-git-objects\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Understanding Git Objects"}]},{"@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":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/94664","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=94664"}],"version-history":[{"count":3,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/94664\/revisions"}],"predecessor-version":[{"id":94669,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/94664\/revisions\/94669"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=94664"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=94664"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=94664"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}