{"id":59583,"date":"2020-09-10T15:01:39","date_gmt":"2020-09-10T19:01:39","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=59583"},"modified":"2023-08-22T14:54:06","modified_gmt":"2023-08-22T18:54:06","slug":"stash","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/","title":{"rendered":"How to Git Stash"},"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\/2020\/09\/how-to-git-stash-1024x538.png\" alt=\"How to do a git stash? | InMotion Hosting\" class=\"wp-image-59598\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash.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 may already know, Git is a powerful program.  One wrong command\ncan wipe out important work.  In this article, you\u2019ll learn how to\n\u201cstash\u201d changes so you can cleanly and easily checkout different\nbranches without destroying your work.\n<\/p>\n\n\n\n<p>Git is a popular version control system for\nanyone managing files on private <a href=\"https:\/\/www.inmotionhosting.com\/cloud-vps\">cloud servers<\/a> or local file structure. \n<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"#stash\">Put your changes aside using the Git stash<\/a><\/li>\n\n\n\n<li><a href=\"#List-stashes\">How do I list my git stashes?<\/a><\/li>\n\n\n\n<li><a href=\"#whats-in-the-stash\">What\u2019s in the stash?<\/a><\/li>\n\n\n\n<li><a href=\"#restore-stash-contents\">How do I restore a stash?<\/a><\/li>\n\n\n\n<li><a href=\"#going-deeper\">Find out more about Git stashing options<\/a><\/li>\n<\/ul>\n\n\n\n<p>Have you ever seen this error when trying to checkout a branch in Git?\n<\/p>\n\n\n\n<p><b>error: Your local changes to the following files would be overwritten\n by checkout:<\/b>\n<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/git-checkout-warning.png\" alt=\"Git checkout warning: your local changes to the following files would be overwritten by checkout\" class=\"wp-image-10329\"><\/figure>\n\n\n\n<p>You\u2019re seeing this error because you\u2019re attempting to switch (or\n\u201ccheckout\u201d) a branch with uncommitted changes in your working\ndirectory.  This means if you go through with the checkout it will\noverwrite the contents of your working directory.\n<\/p>\n\n\n\n<p>To avoid overwriting your work you have two options:\n<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Commit changes<\/li>\n\n\n\n<li>\u201cStash\u201d your changes<\/li>\n<\/ul>\n\n\n\n<p><b>Commit changes.<\/b>  If you decide to commit changes, you are committing\nyour code as is.  This means if any features are broken or incomplete,\nthey will be committed in a broken state.  This is not a best\npractice, so git provides an alternative via stashing.\n<\/p>\n\n\n\n<p><b>\u201cStash\u201d your changes.<\/b>  Stashing your changes basically sets them\naside in a separate blob that can be opened up later.  This way, you\ndon\u2019t have to rush any changes to make a decent commit, and you can\ncreate as many stashes as you need.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"stash\">Using The Git Stash<\/h2>\n\n\n\n<p>To do a clean checkout of a different branch, you can \u201cstash\u201d your\nchanges with the <code>git stash<\/code> command.\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">git stash<\/pre>\n\n\n\n<p>Just running that simple command is all you need to do to stash\nyour changes.\n<\/p>\n\n\n\n<p>Once your changes are stashed, you could run <code>git status<\/code> to make\nsure.\n<\/p>\n\n\n\n<p>You should see a notification that your working directory is clean\n(clean meaning identical to the commit referenced by <code>HEAD<\/code>):\n<\/p>\n\n\n\n<p>\n<b>\u201cOn branch &lt;branch-name&gt;<br>\nnothing to commit, working tree clean\u201d<\/b><br>\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"List-stashes\">List Your Stashes<\/h2>\n\n\n\n<p>As you return to the branch you were working in, you can first check\nto see if you have one stash or multiple.  \n<\/p>\n\n\n\n<p>Do this with the <code>git stash list<\/code> command:\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">git stash list<\/pre>\n\n\n\n<p>This command outputs a list of all your stashes.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"whats-in-the-stash\">Check To See What\u2019s In Your Git Stash<\/h2>\n\n\n\n<p>As you\u2019re stashing items here and there, you will want to know\nwhat\u2019s inside of those stashed items.  You can accomplish this with\nthe <code>git stash show<\/code> command.\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">git stash show<\/pre>\n\n\n\n<p>By itself, <code>git stash show<\/code> will show you a summary of changes made\nin the most recent stash.\n<\/p>\n\n\n\n<p>If you have multiple stashes, add the stash number.\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">git stash show &lt;number&gt;<\/pre>\n\n\n\n<p><code>stash@{0}<\/code> will always be the latest entry into the stash.\nSubsequent entries (<code>stash@{1}<\/code>, <code>stash@{2}<\/code>, and so forth) will be\nnumbered as such.  The higher the number the older the stashed\ncontent.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"restore-stash-contents\">Restore The Content of a Stash<\/h2>\n\n\n\n<p>Now you know how to stash, how to list and view your stashes, so now\nyou only need to learn how to restore stashed content.\n<\/p>\n\n\n\n<p>In order to restore content from a stash, just <code>pop<\/code> it, followed by\nthe stash number:\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">git stash pop &lt;number&gt;<\/pre>\n\n\n\n<p>Remember, you can get the stash numbers with <code>git stash list<\/code>.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"going-deeper\">Going Deeper Into Git Stashing<\/h2>\n\n\n\n<p>All of the commands demonstrated in this article can be expanded with\nvarious options.\n<\/p>\n\n\n\n<p>To see the most detailed and comprehensive listing of options you\ncan use in construction of advanced Git commands, check out the \n<a target=\"_blank\" href=\"https:\/\/git-scm.com\/docs\/git-stash\" rel=\"noopener noreferrer\">full\nGit stash documentation<\/a>.\n<\/p>\n","protected":false},"excerpt":{"rendered":"<p>As you may already know, Git is a powerful program. One wrong command can wipe out important work. In this article, you&#8217;ll learn how to &#8220;stash&#8221; changes so you can cleanly and easily checkout different branches without destroying your work. Git is a popular version control system for anyone managing files on private cloud servers<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/\"> 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-59583","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 Git Stash To Save Your Work<\/title>\n<meta name=\"description\" content=\"Use the git stash to store changes aside. You can only switch branches for a &quot;clean state.&quot; Stashing changes lets you clean your working directory, so you can switch branches without losing your work.\" \/>\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\/stash\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Git Stash To Save Your Work\" \/>\n<meta property=\"og:description\" content=\"Use the git stash to store changes aside. You can only switch branches for a &quot;clean state.&quot; Stashing changes lets you clean your working directory, so you can switch branches without losing your work.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/\" \/>\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=\"2020-09-10T19:01:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-22T18:54:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash-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\/stash\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How to Git Stash\",\"datePublished\":\"2020-09-10T19:01:39+00:00\",\"dateModified\":\"2023-08-22T18:54:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/\"},\"wordCount\":572,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash-1024x538.png\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/\",\"name\":\"How to Git Stash To Save Your Work\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash-1024x538.png\",\"datePublished\":\"2020-09-10T19:01:39+00:00\",\"dateModified\":\"2023-08-22T18:54:06+00:00\",\"description\":\"Use the git stash to store changes aside. You can only switch branches for a \\\"clean state.\\\" Stashing changes lets you clean your working directory, so you can switch branches without losing your work.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Git Stash\"}]},{\"@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 Git Stash To Save Your Work","description":"Use the git stash to store changes aside. You can only switch branches for a \"clean state.\" Stashing changes lets you clean your working directory, so you can switch branches without losing your work.","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\/stash\/","og_locale":"en_US","og_type":"article","og_title":"How to Git Stash To Save Your Work","og_description":"Use the git stash to store changes aside. You can only switch branches for a \"clean state.\" Stashing changes lets you clean your working directory, so you can switch branches without losing your work.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2020-09-10T19:01:39+00:00","article_modified_time":"2023-08-22T18:54:06+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash-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\/stash\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How to Git Stash","datePublished":"2020-09-10T19:01:39+00:00","dateModified":"2023-08-22T18:54:06+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/"},"wordCount":572,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash-1024x538.png","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/","name":"How to Git Stash To Save Your Work","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash-1024x538.png","datePublished":"2020-09-10T19:01:39+00:00","dateModified":"2023-08-22T18:54:06+00:00","description":"Use the git stash to store changes aside. You can only switch branches for a \"clean state.\" Stashing changes lets you clean your working directory, so you can switch branches without losing your work.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2020\/09\/how-to-git-stash.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/stash\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Git Stash"}]},{"@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\/59583","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=59583"}],"version-history":[{"count":11,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/59583\/revisions"}],"predecessor-version":[{"id":106219,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/59583\/revisions\/106219"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=59583"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=59583"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=59583"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}