{"id":92585,"date":"2021-12-01T14:45:48","date_gmt":"2021-12-01T19:45:48","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=92585"},"modified":"2022-02-17T10:12:04","modified_gmt":"2022-02-17T15:12:04","slug":"git-aliases","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/","title":{"rendered":"Speed Up Your Workflow With Git Aliases"},"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\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-1-1024x538.png\" alt=\"Git aliases\" class=\"wp-image-92588\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-1-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-1-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-1-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-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>\nGit aliases can help you save time by saving your favorite commands (and complicated options) into one terse command.  These aliases can be simple as a single letter to stand in place of a complicated set of options.  You will learn more about aliases below, including what they are, how they work, example aliases, and where to put them in your Git configuration.\n<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#simple-commands\">Simple Commands and Complex Options<\/a><\/li><li><a href=\"#how-to-create-git-aliases\">How To Create Git Aliases<\/a><\/li><li><a href=\"#example-aliases-for-git\">Example Aliases For Detailed Log<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"simple-commands\">Simple Commands and Complex Options<\/h2>\n\n\n\n<p>\nOne of the things you will notice when using Git is that there are so many commands but perhaps only small handful that you will use regularly.  And those commands you use regularly come with a variety of complicated options that expand that command.  The <code>git log<\/code> command, for example, gives you a complete log of your project, but you have over a hundred different options and customizable arguments for this one simple command.  While it\u2019s not too difficult to remember <code>git log<\/code> it might be more difficult to remember <code>git log --graph --decorate --oneline --all<\/code>.  And, even if you could remember all of those options you probably would not want to type the whole thing every time.  This is a perfect instance in which a simple alias can be very helpful.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"how-to-create-git-aliases\">How To Create Git Aliases<\/h2>\n\n\n\n<p> The easiest way to create custom Git aliases for your workflow is to add them to your <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-config\/%5C\">Git configuration file<\/a>.  Below, you will see an example of a very simple Git configuration file.  This is what you would use as a local level configuration.  These values will not interfere with configuration in an individual project (<code>.git\/config<\/code>).  <\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">[user]\nname = Joe Example\nemail = Joe@example.com\n\n[alias]\nst = status\nlogg = log --graph --decorate --oneline --all\ncm = commit\ndf = diff\ndfs = diff --staged\n\n[core]\neditor = emacs<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"example-aliases-for-git\">Example Alias For Detailed Log<\/h2>\n\n\n\n<p> Notice all of the aliases in the configuration above.  Instead of typing <code>git status<\/code>, the first alias in this list allows you to simply type <code>git st<\/code>.  Maybe that\u2019s not the biggest time saver, but take a look at <code>logg<\/code>, this extended variation of <code>git log<\/code> will give you all the extra options to produce a more minimalist, descriptive, and colorful log output. <\/p>\n\n\n\n<p>\nSo instead of typing this:\n<\/p>\n\n\n\n<pre id=\"org6b5210c\" class=\"wp-block-preformatted example\">git log --graph --decorate --oneline --all<\/pre>\n\n\n\n<p>\nYou can simply type:\n<\/p>\n\n\n\n<pre id=\"orgd6964cf\" class=\"wp-block-preformatted example\">git logg<\/pre>\n\n\n\n<p> In this example, the shortcut alias provided reads \u201clogg\u201d, with the extra \u201cg\u201d meant to distinguish the alias from the actual <code>git log<\/code> command.  This gives you both options, but you can name your alias anything you want.  You could even name it \u201clog\u201d to outright replace the default <code>log<\/code> behavior. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">\u201cGit Add Alias\u201d On The Fly<\/h2>\n\n\n\n<p>You can also add aliases without having to create entries in your configuration file.  You can create aliases on the fly, and they will be added to the system wide list of aliases following this format:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">git config --global alias.&lt;alias&gt; &lt;full command&gt;<\/pre>\n\n\n\n<p>Here are some examples put forth in the Git documentation:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$ git config --global alias.co checkout\n$ git config --global alias.br branch\n$ git config --global alias.ci commit\n$ git config --global alias.st status<\/pre>\n\n\n\n<hr class=\"wp-block-separator\">\n\n\n\n<p>\nSo that\u2019s how you can use Git aliases in your configuration to speed up your Git workflow.  What\u2019s the next step on your Git journey?\n<\/p>\n\n\n\n<ul class=\"org-ul wp-block-list\"><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-hooks\/\">Learn all about Git hooks<\/a><\/li><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/using-git-to-publish-files\/\">Use Git to publish files to your server<\/a><\/li><li><a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-basics\/\">What are the very basics of Git everyone should know?<\/a><\/li><\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Git aliases can help you save time by saving your favorite commands (and complicated options) into one terse command. These aliases can be simple as a single letter to stand in place of a complicated set of options. You will learn more about aliases below, including what they are, how they work, example aliases, and<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/\"> 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-92585","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>Speed Up Your Workflow With Git Aliases | 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-aliases\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Speed Up Your Workflow With Git Aliases | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"Git aliases can help you save time by saving your favorite commands (and complicated options) into one terse command. These aliases can be simple as a single letter to stand in place of a complicated set of options. You will learn more about aliases below, including what they are, how they work, example aliases, and Read More &gt;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/\" \/>\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-12-01T19:45:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-17T15:12:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-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=\"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-aliases\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"Speed Up Your Workflow With Git Aliases\",\"datePublished\":\"2021-12-01T19:45:48+00:00\",\"dateModified\":\"2022-02-17T15:12:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/\"},\"wordCount\":494,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-1-1024x538.png\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/\",\"name\":\"Speed Up Your Workflow With Git Aliases | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-1-1024x538.png\",\"datePublished\":\"2021-12-01T19:45:48+00:00\",\"dateModified\":\"2022-02-17T15:12:04+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-1.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-1.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Speed Up Your Workflow With Git Aliases\"}]},{\"@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":"Speed Up Your Workflow With Git Aliases | 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-aliases\/","og_locale":"en_US","og_type":"article","og_title":"Speed Up Your Workflow With Git Aliases | InMotion Hosting","og_description":"Git aliases can help you save time by saving your favorite commands (and complicated options) into one terse command. These aliases can be simple as a single letter to stand in place of a complicated set of options. You will learn more about aliases below, including what they are, how they work, example aliases, and Read More >","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2021-12-01T19:45:48+00:00","article_modified_time":"2022-02-17T15:12:04+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-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":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"Speed Up Your Workflow With Git Aliases","datePublished":"2021-12-01T19:45:48+00:00","dateModified":"2022-02-17T15:12:04+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/"},"wordCount":494,"commentCount":2,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-1-1024x538.png","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/","name":"Speed Up Your Workflow With Git Aliases | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-1-1024x538.png","datePublished":"2021-12-01T19:45:48+00:00","dateModified":"2022-02-17T15:12:04+00:00","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-1.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/12\/Speed-Up-Your-Workflow-With-Git-Aliases-1.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-aliases\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Speed Up Your Workflow With Git Aliases"}]},{"@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\/92585","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=92585"}],"version-history":[{"count":5,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/92585\/revisions"}],"predecessor-version":[{"id":94201,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/92585\/revisions\/94201"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=92585"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=92585"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=92585"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}