{"id":90403,"date":"2021-10-27T09:07:56","date_gmt":"2021-10-27T13:07:56","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=90403"},"modified":"2021-11-18T14:08:51","modified_gmt":"2021-11-18T19:08:51","slug":"git-for-bash","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/","title":{"rendered":"Enhance Your Shell With Git For Bash"},"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\/Git-For-Bash-1024x538.png\" alt=\"Git in bash, install bash features for Git\" class=\"wp-image-90404\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>\nIf you are a regular command line user you are probably familiar with the frustration of slamming your TAB key and receiving no auto completions for a long command.  In many cases, it\u2019s because those auto completions are simply not present in your Bash configuration.  In this article, you\u2019ll learn how to add auto completions for Git as well as enhance your prompt with Git information like branch names and status indicators.\n<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#check-distro\">Check Your Distribution<\/a><\/li><li><a href=\"#download-git-completion\">Download the Git Completions File For Bash<\/a><\/li><li><a href=\"#download-git-prompt\">Download Git Prompt For Bash<\/a><\/li><li><a href=\"#edit-bashrc\">Edit the <code>.bashrc<\/code> File<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"check-distro\">Check Your Distribution<\/h2>\n\n\n\n<p>\nThe Git features for Bash discussed in this article may be included in your distribution by default.  You can check this by trying to do a TAB auto completion on a git command like <code>git checkout<\/code>:\n<\/p>\n\n\n\n<pre id=\"orgeefb2b8\" class=\"wp-block-preformatted example\">git chec<kbd>&lt;TAB&gt;<\/kbd>\n<\/pre>\n\n\n\n<p>\nIf the command does not complete itself, you can proceed with the rest of the article to get the Git bash completions installed.\n<\/p>\n\n\n\n<p>\nLikewise, you will also want to make sure you have Git and <code>wget<\/code> installed in your system.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"download-git-completion\">Download the Git Completions File For Bash<\/h2>\n\n\n\n<p>\nIn order to provide your Bash installation with the Git completions you will need to source the <code>git-completion.bash<\/code> file and load it before every shell session.  This file should be available in your Git source code, but it\u2019s easier to simply download it from the Git repository at GitHub:\n<\/p>\n\n\n\n<pre id=\"orgfda1196\" class=\"wp-block-preformatted example\">wget https:\/\/raw.githubusercontent.com\/git\/git\/master\/contrib\/completion\/git-completion.bash\n<\/pre>\n\n\n\n<p>\nYou can save this file to any location in your file system that you prefer, but for the sake of simplicity the default home directory for your user is a good place to start \u2014 and will be used below when sourcing this file in your Bash configuration.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"download-git-prompt\">Download Git Prompt For Bash<\/h2>\n\n\n\n<p>\nAs in the above download, we will retrieve the Git prompt file from the repository at GitHub:\n<\/p>\n\n\n\n<pre id=\"org58d0c69\" class=\"wp-block-preformatted example\">wget https:\/\/raw.githubusercontent.com\/git\/git\/master\/contrib\/completion\/git-prompt.sh\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"edit-bashrc\">Edit the <code>.bashrc<\/code> File<\/h2>\n\n\n\n<p> Add the following text into your <code>.bashrc<\/code> file: <\/p>\n\n\n\n<pre class=\"wp-block-preformatted src src-bash\"><span style=\"color: #b22222;\"># Git completions<\/span>\n<span style=\"color: #483d8b;\">.<\/span> ~\/git-completion.bash\n\n<span style=\"color: #b22222;\"># Git prompt<\/span>\n<span style=\"color: #483d8b;\">.<\/span> ~\/git-prompt.sh\n<span style=\"color: #483d8b;\">export<\/span> <span style=\"color: #a0522d;\">GIT_PS1_SHOWDIRTYSTATE<\/span>=1\n<span style=\"color: #483d8b;\">export<\/span> <span style=\"color: #a0522d;\">PS1<\/span>=<span style=\"color: #8b2252;\">'\\w$(<\/span><span style=\"color: #ff00ff;\">__git_ps1<\/span><span style=\"color: #8b2252;\"> \" (%s)\")\\$ '<\/span><\/pre>\n\n\n\n<p>When you reload a new shell, your prompt should look like this when inside a Git project directory: <\/p>\n\n\n\n<pre id=\"org8b125a2\" class=\"wp-block-preformatted example\">~\/git-directory (master #)$   \n<\/pre>\n\n\n\n<p>The first part is the name of the directory you are visiting, and in the parentheses you have the branch name and a status indicator followed by the beginning of your prompt (<code>$<\/code>).<\/p>\n\n\n\n<p>The hash mark (<code>#<\/code>) after the branch name will change based on the status of the project.  For example, if you have added modifications to the staging index you will see a <code>+<\/code> sign.  If there are unstaged changes you will see a <code>*<\/code>.  If the working directory is clean you will see no mark by the branch name. <\/p>\n\n\n\n<p>\nFor more information on different options and configurations of your Git prompt you can read the documentation and comments provided in the <code>git-prompt.sh<\/code> file.\n<\/p>\n\n\n\n<p> Well done!  You now know how to expand your Bash with helpful Git information.  What\u2019s the next step on your Git journey?  <\/p>\n\n\n\n<ul class=\"org-ul wp-block-list\"><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-server\/\">Create your own private Git server<\/a><\/li><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-hooks\/\">Git hooks (and how they work)<\/a><\/li><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/edu\/cpanel\/how-to-use-git-version-control-in-cpanel\/\">How to use Git in cPanel<\/a><\/li><\/ul>\n","protected":false},"excerpt":{"rendered":"<p>If you are a regular command line user you are probably familiar with the frustration of slamming your TAB key and receiving no auto completions for a long command. In many cases, it&#8217;s because those auto completions are simply not present in your Bash configuration. In this article, you&#8217;ll learn how to add auto completions<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/\"> 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-90403","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>Enhance Your Shell With Git For Bash | 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\/git-for-bash\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Enhance Your Shell With Git For Bash | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"If you are a regular command line user you are probably familiar with the frustration of slamming your TAB key and receiving no auto completions for a long command. In many cases, it&#8217;s because those auto completions are simply not present in your Bash configuration. In this article, you&#8217;ll learn how to add auto completions Read More &gt;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/\" \/>\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-27T13:07:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-18T19:08:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash-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=\"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-for-bash\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"Enhance Your Shell With Git For Bash\",\"datePublished\":\"2021-10-27T13:07:56+00:00\",\"dateModified\":\"2021-11-18T19:08:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/\"},\"wordCount\":480,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash-1024x538.png\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/\",\"name\":\"Enhance Your Shell With Git For Bash | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash-1024x538.png\",\"datePublished\":\"2021-10-27T13:07:56+00:00\",\"dateModified\":\"2021-11-18T19:08:51+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Enhance Your Shell With Git For Bash\"}]},{\"@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":"Enhance Your Shell With Git For Bash | 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\/git-for-bash\/","og_locale":"en_US","og_type":"article","og_title":"Enhance Your Shell With Git For Bash | InMotion Hosting","og_description":"If you are a regular command line user you are probably familiar with the frustration of slamming your TAB key and receiving no auto completions for a long command. In many cases, it&#8217;s because those auto completions are simply not present in your Bash configuration. In this article, you&#8217;ll learn how to add auto completions Read More >","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-10-27T13:07:56+00:00","article_modified_time":"2021-11-18T19:08:51+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash-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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"Enhance Your Shell With Git For Bash","datePublished":"2021-10-27T13:07:56+00:00","dateModified":"2021-11-18T19:08:51+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/"},"wordCount":480,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash-1024x538.png","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/","name":"Enhance Your Shell With Git For Bash | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash-1024x538.png","datePublished":"2021-10-27T13:07:56+00:00","dateModified":"2021-11-18T19:08:51+00:00","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/10\/Git-For-Bash.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-for-bash\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Enhance Your Shell With Git For Bash"}]},{"@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\/90403","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=90403"}],"version-history":[{"count":5,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/90403\/revisions"}],"predecessor-version":[{"id":91743,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/90403\/revisions\/91743"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=90403"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=90403"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=90403"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}