{"id":93018,"date":"2022-01-04T11:23:00","date_gmt":"2022-01-04T16:23:00","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/?p=93018"},"modified":"2022-01-04T11:25:37","modified_gmt":"2022-01-04T16:25:37","slug":"git-clean","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/","title":{"rendered":"Using Git Clean To Remove Unwanted Files"},"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\/01\/Using-Git-Clean-To-Remove-Unwanted-Files-1024x538.png\" alt=\"Git clean\" class=\"wp-image-93020\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p> When working with any set of files, whether it is for programming, document writing, or otherwise, you may notice all sorts of extra files appear from time to time in your working directory, or you may need to temporarily create additional files for some specific purpose.  Sometimes these are temporary auto-save files, ghost files created by your operating system, build files, log files, etc.  And you don\u2019t want these files getting mixed up with your critical project files.  The easiest way to remove these extra files is to never bring them into Git in the first place.  For this, you can <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/gitignore\/\">use an \u201cexcludes\u201d or \u201cgitignore\u201d file<\/a>.  But if these files are already created and you want to systematically remove them, Git clean is a great way to do it.  <\/p>\n\n\n\n<p>Git clean will literally clean your Git project, removing any files in your working directory that are not being tracked by Git.  This means files you have added to Git will remain untouched but any additional files will be deleted.  Of course, this command can be destructive, so this article will show you how to use the command safely and avoid any unintended data loss. <\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#useful-options\">Useful Options<\/a><\/li><li><a href=\"#first-clea\">Your First Clean<\/a><\/li><li><a href=\"#dry-run\">Git Clean Dry Run<\/a><\/li><li><a href=\"#interactive\">Interactively Select Files<\/a><\/li><li><a href=\"#clean-directory\">Clean a Specific Directory<\/a><\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"useful-options\">Useful Options<\/h2>\n\n\n\n<p>The following list of options is not exhaustive, but provides some helpful tweaks that may be useful in getting you the desired action: <\/p>\n\n\n\n<dl class=\"org-dl\">\n<dt><code>-n, --dry-run<\/code><\/dt><dd>Dry run, show a list of files that would be removed but do not remove them.<\/dd>\n<dt><code>-i<\/code>, <code>--interactive<\/code><\/dt><dd>Proceed with file deletion interactively.  Go through each file individually and approve of deletions file by file.<\/dd>\n<dt><code>-X<\/code><\/dt><dd>The <code>-X<\/code> option will only delete files ignored by Git.  This is a good way to keep any files you may have created manually.  If you\u2019re unsure what \u201cignored by Git\u201d means check out our full guide on<\/dd>\n<dt><code>-d<\/code><\/dt><dd>By default, Git clean will not delete files from untracked directories.  The <code>-d<\/code> option will tell Git clean to apply recursively into untrack directories.  (Note: this option can be nullified by providing a <code>&lt;path&gt;<\/code> to the command.<\/dd>\n<\/dl>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"first-clea\">Your First Clean<\/h2>\n\n\n\n<p>\nThe first time you run the <code>git clean<\/code> command you may trigger an error:\n<\/p>\n\n\n\n<pre id=\"org590cef3\" class=\"wp-block-preformatted example\">fatal: clean.requireForce defaults to true and neither -i, -n, nor -f given; refusing to clean<\/pre>\n\n\n\n<p>This means that your Git configuration has the \u201cforce\u201d requirement set to true.  In effect, this means you must use a force <code>-f<\/code> option to run a Git clean or update your configuration. <\/p>\n\n\n\n<p>You can go ahead and use the force option to proceed with the clean: <\/p>\n\n\n\n<pre id=\"org4ce70d8\" class=\"wp-block-preformatted example\">git clean -f<\/pre>\n\n\n\n<p>Or, you can use the <code>-i<\/code> (interactive) or <code>-n<\/code> (dry run) options.  (More on these options below.) <\/p>\n\n\n\n<p>Alternatively, you can update your Git configuration file to set the force requirement to false: <\/p>\n\n\n\n<pre class=\"wp-block-preformatted src src-conf\">[<span style=\"color: #b2baf6;\"><span class=\"has-inline-color has-luminous-vivid-orange-color\">clean<\/span><\/span>]\n<span style=\"color: #f6df92;\"><span class=\"has-inline-color has-vivid-green-cyan-color\">requireForce<\/span><\/span> = false<\/pre>\n\n\n\n<p>\nWith the above variable you will be able to run <code>git clean<\/code> without triggering an error.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"dry-run\">Git Clean Dry Run<\/h2>\n\n\n\n<p>Before you attempt to clean anything you might to a \u201cdry\u201d run, or test, just to see what would be cleaned if you were to proceed with the command. <\/p>\n\n\n\n<pre id=\"org305a2e8\" class=\"wp-block-preformatted example\">git clean -n<\/pre>\n\n\n\n<p>\nAnd you would get an output similar to the one below:\n<\/p>\n\n\n\n<pre id=\"org9278d11\" class=\"wp-block-preformatted example\">chris@server:  \/tmp\/git-clean-test$ git clean -n\nWould remove garbage-file\n<\/pre>\n\n\n\n<p>\nThe line \u201cWould remove garbage-file\u201d indicates that running a <code>git clean<\/code> would remove a file called \u201cgarbage-file\u201d.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"interactive\">Interactively Select Files<\/h2>\n\n\n\n<p>\nGit clean also comes with an interactive mode that guides you through each file to make sure you don\u2019t accidentally remove something you may need.  If you want to check your files as a cautionary step before deleting anything then this is a good option for you.\n<\/p>\n\n\n\n<pre id=\"org28c957f\" class=\"wp-block-preformatted example\">git clean -i<\/pre>\n\n\n\n<p>You will see an interactive output that looks similar to this: <\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"627\" height=\"149\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/git-clean-interactive.png\" alt=\"Git clean interactive options\" class=\"wp-image-93019\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/git-clean-interactive.png 627w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/git-clean-interactive-300x71.png 300w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"clean-directory\">Clean a Specific Directory<\/h2>\n\n\n\n<p>\nGit clean can also operate on a specific directory.  In this example, imagine you want to clean a directory called \u201cscratch-files\u201d:\n<\/p>\n\n\n\n<pre id=\"org7c576e2\" class=\"wp-block-preformatted example\">chris@server:  \/tmp\/git-clean-test$ git clean scratch-files\/\nRemoving scratch-files\/\n<\/pre>\n\n\n\n<p>Notice that Git removed the entire directory.  Any untracked files in the upper level working directory would be untouched.<\/p>\n\n\n\n<pre id=\"orgf0073bc\" class=\"wp-block-preformatted example\">chris@server:  \/tmp\/git-clean-test$ git status\nOn branch master\nUntracked files:\n  (use \"git add &lt;file&gt;...\" to include in what will be committed)\n\tgarbage-file\n\nnothing added to commit but untracked files present (use \"git add\" to track)<\/pre>\n\n\n<!-- Shortcode [cloud-server-cta5] does not exist -->\n","protected":false},"excerpt":{"rendered":"<p>When working with any set of files, whether it is for programming, document writing, or otherwise, you may notice all sorts of extra files appear from time to time in your working directory, or you may need to temporarily create additional files for some specific purpose. Sometimes these are temporary auto-save files, ghost files created<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/\"> 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-93018","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>Using Git Clean To Remove Unwanted Files | 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-clean\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Git Clean To Remove Unwanted Files | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"When working with any set of files, whether it is for programming, document writing, or otherwise, you may notice all sorts of extra files appear from time to time in your working directory, or you may need to temporarily create additional files for some specific purpose. Sometimes these are temporary auto-save files, ghost files created Read More &gt;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/\" \/>\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-01-04T16:23:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-01-04T16:25:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files-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=\"4 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-clean\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"Using Git Clean To Remove Unwanted Files\",\"datePublished\":\"2022-01-04T16:23:00+00:00\",\"dateModified\":\"2022-01-04T16:25:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/\"},\"wordCount\":624,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files-1024x538.png\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/\",\"name\":\"Using Git Clean To Remove Unwanted Files | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files-1024x538.png\",\"datePublished\":\"2022-01-04T16:23:00+00:00\",\"dateModified\":\"2022-01-04T16:25:37+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Git Clean To Remove Unwanted Files\"}]},{\"@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":"Using Git Clean To Remove Unwanted Files | 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-clean\/","og_locale":"en_US","og_type":"article","og_title":"Using Git Clean To Remove Unwanted Files | InMotion Hosting","og_description":"When working with any set of files, whether it is for programming, document writing, or otherwise, you may notice all sorts of extra files appear from time to time in your working directory, or you may need to temporarily create additional files for some specific purpose. Sometimes these are temporary auto-save files, ghost files created Read More >","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2022-01-04T16:23:00+00:00","article_modified_time":"2022-01-04T16:25:37+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files-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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"Using Git Clean To Remove Unwanted Files","datePublished":"2022-01-04T16:23:00+00:00","dateModified":"2022-01-04T16:25:37+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/"},"wordCount":624,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files-1024x538.png","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/","name":"Using Git Clean To Remove Unwanted Files | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files-1024x538.png","datePublished":"2022-01-04T16:23:00+00:00","dateModified":"2022-01-04T16:25:37+00:00","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/Using-Git-Clean-To-Remove-Unwanted-Files.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-clean\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Using Git Clean To Remove Unwanted Files"}]},{"@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\/93018","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=93018"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/93018\/revisions"}],"predecessor-version":[{"id":93024,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/93018\/revisions\/93024"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=93018"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=93018"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=93018"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}