{"id":89646,"date":"2021-10-07T13:51:43","date_gmt":"2021-10-07T17:51:43","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=89646"},"modified":"2021-10-07T13:51:44","modified_gmt":"2021-10-07T17:51:44","slug":"delete-branch","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/","title":{"rendered":"How To Delete a Branch in Git"},"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\/10\/How-To-Delete-a-Branch-In-Git-1024x538.png\" alt=\"\" class=\"wp-image-89647\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p> As you will likely recall from our introductory guide on <a href=\"https:\/\/www.inmotionhosting.com\/support\/git\/\">everything Git<\/a>, you can create discrete branches in your project, upon which you can make changes, test things, and work non-destructively, always reserving the option to \u201ccheck out\u201d other branches.  The branch functionality is one of the most important systems you can master with Git, and it will help you manage your projects with maximum efficiency.  But over time, your branches might start to add up.  Some of these branches will get merged into the \u201cmaster\u201d branch while others may rot on the vein and never be used.  In this article, you\u2019ll learn how to delete branches you no longer need. <\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#options\">Basic Options<\/a><\/li><li><a href=\"#delete-git-branch\">Deleting a Branch in Practice<\/a><\/li><\/ul>\n\n\n<!-- Shortcode [private-cloud-cta2] does not exist -->\n\n\n\n<h2 class=\"wp-block-heading\" id=\"options\">Basic Options<\/h2>\n\n\n\n<p>\nThere are two important options for you to memorize when it comes to deleting branches in Git:\n<\/p>\n\n\n\n<dl class=\"org-dl\">\n<dt><code>-d<\/code><\/dt><dd>Delete a branch, followed by the name of the branch.<\/dd>\n<dt><code>-D<\/code><\/dt><dd>Force deletion of a branch.<\/dd>\n<\/dl>\n\n\n\n<p> Below, you will see these options in action.  Circumstances will dictate which one you choose to use, but at this time it is a good idea to commit them to memory.  An easy mnemonic clue for this option is to remember that when it comes to Git branches, \u201cD\u201d stands for <i>delete<\/i>. <\/p>\n\n\n\n<p>\nThe basic usage of the command is as follows:\n<\/p>\n\n\n\n<pre id=\"orga6b00da\" class=\"wp-block-preformatted example\">git branch -d &lt;name of branch&gt;<\/pre>\n\n\n\n<p> But as you will see below, this operation may trigger a helpful error. Git will try to prevent you from deleting content you might need. Read on below to find out how.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"delete-git-branch\">Deleting a Git Branch in Practice<\/h2>\n\n\n\n<p> The <code>-d<\/code> option will not work if you are trying to delete the same branch you are currently checking out.  Remember, \u201cchecking out\u201d a branch means you are currently working on that branch.  <\/p>\n\n\n\n<p><b>Git will not allow you to delete a branch on which you are currently working.<\/b> <\/p>\n\n\n\n<p>\nIn this instance, imagine you are working on a branch called \u201cchanges\u201d.  If you try to delete the \u201cchanges\u201d branch with the <code>-d<\/code> option, while the branch is stilled checked out, you will receive this error:\n<\/p>\n\n\n\n<pre id=\"orgaea3d65\" class=\"wp-block-preformatted example\">error: Cannot delete branch 'changes'<\/pre>\n\n\n\n<p>You are seeing this error because you are trying to delete an active branch while it is checked out. <\/p>\n\n\n\n<p>In order to properly delete the \u201cchanges\u201d branch you will need to check out another branch.  For example, you would need to check out the \u201cmaster\u201d branch and then attempt to delete \u201cchanges\u201d.  First, check out \u201cmaster\u201d: <\/p>\n\n\n\n<pre id=\"org79e7d9e\" class=\"wp-block-preformatted example\">git checkout master\n<\/pre>\n\n\n\n<p> If you run the <code>git branch<\/code> command, you will see that \u201cmaster\u201d is now selected as the active branch.  Try to delete \u201cchanges\u201d now with the <code>-d<\/code> option and see what happens: <\/p>\n\n\n\n<pre id=\"org8362724\" class=\"wp-block-preformatted example\">git branch -d changes\n<\/pre>\n\n\n\n<p>\nYou will receive another helpful error:\n<\/p>\n\n\n\n<pre id=\"org665477a\" class=\"wp-block-preformatted example\">error: The branch 'changes' is not fully merged.\nIf you are sure you want to delete it, run 'git branch -D changes'.<\/pre>\n\n\n\n<p>This error indicates that the \u201cchanges\u201d branch has content and modifications that have been not been merged, therefore these changes would be lost if you delete the branch.  The second line informs you that if you wish to proceed with the deletion you can use the <code>-D<\/code> option to \u201cforce\u201d a deletion.<\/p>\n\n\n\n<pre id=\"org7a17b63\" class=\"wp-block-preformatted example\">git branch -D changes\n<\/pre>\n\n\n\n<p>\nWhich is equivalent to:\n<\/p>\n\n\n\n<pre id=\"org9634c64\" class=\"wp-block-preformatted example\">git branch --delete --force changes\n<\/pre>\n\n\n\n<p>\nYou will see a success message indicating that you deleted the branch:\n<\/p>\n\n\n\n<pre id=\"org7ab296a\" class=\"wp-block-preformatted example\">Deleted branch changes (was 3527e57).\n<\/pre>\n\n\n\n<p>Well done! You now know how to delete a branch from your Git project.  As always, be very careful when deleting any content you might need, your deleted will be unrecoverable.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As you will likely recall from our introductory guide on everything Git, you can create discrete branches in your project, upon which you can make changes, test things, and work non-destructively, always reserving the option to &#8220;check out&#8221; other branches. The branch functionality is one of the most important systems you can master with Git,<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/\"> 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-89646","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 Delete a Branch in Git<\/title>\n<meta name=\"description\" content=\"To keep your Git project organized, you will want to occasionally delete branches that have not been merged and which you no longer need.\" \/>\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\/delete-branch\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Delete a Branch in Git\" \/>\n<meta property=\"og:description\" content=\"To keep your Git project organized, you will want to occasionally delete branches that have not been merged and which you no longer need.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/\" \/>\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-10-07T17:51:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-10-07T17:51:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git.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\/delete-branch\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How To Delete a Branch in Git\",\"datePublished\":\"2021-10-07T17:51:43+00:00\",\"dateModified\":\"2021-10-07T17:51:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/\"},\"wordCount\":534,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git-1024x538.png\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/\",\"name\":\"How To Delete a Branch in Git\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git-1024x538.png\",\"datePublished\":\"2021-10-07T17:51:43+00:00\",\"dateModified\":\"2021-10-07T17:51:44+00:00\",\"description\":\"To keep your Git project organized, you will want to occasionally delete branches that have not been merged and which you no longer need.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Delete a Branch in Git\"}]},{\"@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 Delete a Branch in Git","description":"To keep your Git project organized, you will want to occasionally delete branches that have not been merged and which you no longer need.","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\/delete-branch\/","og_locale":"en_US","og_type":"article","og_title":"How To Delete a Branch in Git","og_description":"To keep your Git project organized, you will want to occasionally delete branches that have not been merged and which you no longer need.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-10-07T17:51:43+00:00","article_modified_time":"2021-10-07T17:51:44+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git.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\/delete-branch\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How To Delete a Branch in Git","datePublished":"2021-10-07T17:51:43+00:00","dateModified":"2021-10-07T17:51:44+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/"},"wordCount":534,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git-1024x538.png","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/","name":"How To Delete a Branch in Git","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git-1024x538.png","datePublished":"2021-10-07T17:51:43+00:00","dateModified":"2021-10-07T17:51:44+00:00","description":"To keep your Git project organized, you will want to occasionally delete branches that have not been merged and which you no longer need.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/How-To-Delete-a-Branch-In-Git.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/delete-branch\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How To Delete a Branch in Git"}]},{"@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\/89646","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=89646"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/89646\/revisions"}],"predecessor-version":[{"id":89653,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/89646\/revisions\/89653"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=89646"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=89646"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=89646"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}