{"id":4298,"date":"2018-01-22T18:03:37","date_gmt":"2018-01-22T18:03:37","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2018\/01\/22\/setting-up-your-remote-repository-with-git-2\/"},"modified":"2021-11-30T15:30:55","modified_gmt":"2021-11-30T20:30:55","slug":"setting-up-your-remote-repository-with-git","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/","title":{"rendered":"Setting Up Your Remote Repository With Git"},"content":{"rendered":"<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"538\" src=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository-1024x538.png\" alt=\"Setting up your remote repository with Git\" class=\"wp-image-92575\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>You can use Git locally to manage file versions, but more power comes when you distribute your work and allows other to collaborate. You can accomplish this by \u201cpushing\u201d and \u201cpulling\u201d content to and from a remote server locations. In this example, of course, we will be using an InMotion Hosting server to demonstrate <strong>setting up your remote repository with Git<\/strong>.<\/p>\n\n\n\n<p>As stated before in the <a href=\"\/support\/website\/server-usage\/introduction-to-git\">Introduction to Git<\/a>, there are free Git platforms available on the web, but you are forced to use their resources and follow their rules. For some users, managing a private server location provides more attractive options as far as customization goes.<\/p>\n\n\n\n<p>Be sure to check out our full guide on <a href=\"\/support\/website\/git\/how-to-install-git\/\">how to install Git<\/a>, if you have not completed that step yet.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using Git to Publish Files<\/h2>\n\n\n\n<p>Using Git as a publishing vehicle can allow for easy file transfer and also allow others to use your project files. This can be very helpful if you want to host files that others will need to have access to, and thus require the latest version with most recent changes applied. With Git, you can manage the files locally, commit changes, and upload the changes without ever leaving a single command line.<\/p>\n\n\n\n<p>In this case, we will be using the Git \u201cPush\u201d command. This exact use case is detailed completely in our full guide on <a href=\"\/support\/website\/git\/using-git-to-publish-files\/\">how to publish files with Git<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Add a Remote Repository to your Server Using Git<\/h2>\n\n\n\n<p>The most important step for distributing your Git project is to establish a remote server location. We can refer to this as the \u201cremote\u201d repository as opposed to your \u201clocal\u201d repository, which we have been using thus far.<\/p>\n\n\n\n<p>To use a remote repository, you must only make sure that you have <a href=\"\/support\/server\/ssh\/how-to-login-ssh\/\">SSH access to your server<\/a>. Once there, you can follow these steps to create your remote repository.<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>Log into your server via <a href=\"\/support\/server\/ssh\/how-to-login-ssh\/\">SSH<\/a><\/li><li>In a convenient location, create a new directory ending with the <code>.git<\/code> extension (<code>production.git<\/code>, for example)<\/li><li>Enter the new directory<\/li><li>Run this command inside the directory: <pre class=\"code_block\"> git init --bare <\/pre><\/li><li>Go back to your local repository<\/li><li>Enter your working directory and run this command, submitting the \u201cname-of-repo\u201d with something relevant for your project and \u201cuserna5\u201d with your cPanel or SSH username and \u201cdestination\u201d with the host domain or IP: <pre class=\"code_block\"> git remote add <span style=\"color: green;\">name-of-repo<\/span> userna5@desination:\/home\/userna5\/production.git<\/pre><\/li><li>Having successfully added a remote repository, this command will push the contents of your local repository up to the remote repository: <pre class=\"code_block\"> git push <span style=\"color: green;\">name-of-repo<\/span> master<\/pre><p>\u201cmaster\u201d being the name of the branch (we will discuss branches later, but, for now, using the master branch exclusively is fine)<\/p><\/li><li>Unless you are using SSH keys, you will be prompted for a password<\/li><\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">How to Pull Recent Files from your Remote Repository<\/h2>\n\n\n\n<p>Our full guide on <a href=\"\/support\/website\/git\/using-git-to-publish-files\/\">how to publish files with Git<\/a> uses a \u201ccheckout\u201d command to copy all of the files associated with a project to a convenient location.<\/p>\n\n\n\n<p>Let\u2019s suppose that you eventually have a collaborator working on a project with you. They will want to always make sure they have the most recent iteration of the project files.<\/p>\n\n\n\n<p>To accomplish this, we will use a Git \u201cclone\u201d command to grab the project from the remote repository and, once cloned, use a \u201cpull\u201d command to make sure we have incorporated all recent changes.<\/p>\n\n\n\n<ol class=\"article_list wp-block-list\"><li>Open up a Terminal app<\/li><li>Navigate to a convenient location and run the \u201cclone\u201d command:\n<pre class=\"code_block\"> git clone <span style=\"color: green;\">name-of-repo<\/span> userna5@desination:\/home\/userna5\/production.git<\/pre>\n<\/li><li>Unless the user has SSH keys, they will be prompted for the SSH password<\/li><\/ol>\n\n\n\n<p>Using the example above, there will now be a directory called \u201cproduction\u201d in this location. This is effectively a local Git repository.<\/p>\n\n\n\n<p>Supposing that changes are made to this project in the future, in order for the user to make sure they have the most recent updates, they will need to run a \u201cpull\u201d command:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted code_block\"> git pull <span style=\"color: green;\">name-of-repo<\/span> master<\/pre>\n\n\n\n<p>We now know how to set up a Git repository at a remote server location, how to \u201cpush\u201d information to the server, how to clone a repository, and how to \u201cpull\u201d information from the server. We covered a lot here, but you should be getting a solid foundation in Git by now. Next, we will cover \u201ctagging\u201d various commits for record-keeping purposes.<\/p>\n\n\n\n<p>Consider <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/deploy-files-github-actions\/\">deploying files with GitHub actions<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>You can use Git locally to manage file versions, but more power comes when you distribute your work and allows other to collaborate. You can accomplish this by &#8220;pushing&#8221; and &#8220;pulling&#8221; content to and from a remote server locations. In this example, of course, we will be using an InMotion Hosting server to demonstrate setting<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/\"> Read More ><\/a><\/p>\n","protected":false},"author":17,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[4309],"tags":[],"class_list":["post-4298","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>Setting Up Your Remote Repository With Git | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article, we&#039;ll demonstrate setting up your remote repository with git. This is an important step.\" \/>\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\/setting-up-your-remote-repository-with-git\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Setting Up Your Remote Repository With Git | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article, we&#039;ll demonstrate setting up your remote repository with git. This is an important step.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/\" \/>\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=\"2018-01-22T18:03:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-11-30T20:30:55+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository-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\/setting-up-your-remote-repository-with-git\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"Setting Up Your Remote Repository With Git\",\"datePublished\":\"2018-01-22T18:03:37+00:00\",\"dateModified\":\"2021-11-30T20:30:55+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/\"},\"wordCount\":700,\"commentCount\":3,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository-1024x538.png\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/\",\"name\":\"Setting Up Your Remote Repository With Git | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository-1024x538.png\",\"datePublished\":\"2018-01-22T18:03:37+00:00\",\"dateModified\":\"2021-11-30T20:30:55+00:00\",\"description\":\"In this article, we'll demonstrate setting up your remote repository with git. This is an important step.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Setting Up Your Remote Repository With Git\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"name\":\"InMotion Hosting Support Center\",\"description\":\"Web Hosting Support &amp; Tutorials\",\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\",\"name\":\"InMotion Hosting\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg\",\"width\":696,\"height\":696,\"caption\":\"InMotion Hosting\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/inmotionhosting\/\",\"https:\/\/x.com\/InMotionHosting\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\",\"name\":\"Christopher Maiorana\",\"description\":\"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Setting Up Your Remote Repository With Git | InMotion Hosting","description":"In this article, we'll demonstrate setting up your remote repository with git. This is an important step.","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\/setting-up-your-remote-repository-with-git\/","og_locale":"en_US","og_type":"article","og_title":"Setting Up Your Remote Repository With Git | InMotion Hosting","og_description":"In this article, we'll demonstrate setting up your remote repository with git. This is an important step.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2018-01-22T18:03:37+00:00","article_modified_time":"2021-11-30T20:30:55+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository-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\/setting-up-your-remote-repository-with-git\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"Setting Up Your Remote Repository With Git","datePublished":"2018-01-22T18:03:37+00:00","dateModified":"2021-11-30T20:30:55+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/"},"wordCount":700,"commentCount":3,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository-1024x538.png","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/","name":"Setting Up Your Remote Repository With Git | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository-1024x538.png","datePublished":"2018-01-22T18:03:37+00:00","dateModified":"2021-11-30T20:30:55+00:00","description":"In this article, we'll demonstrate setting up your remote repository with git. This is an important step.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2021\/11\/Setting-Up-Your-Remote-Repository.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/setting-up-your-remote-repository-with-git\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Setting Up Your Remote Repository With Git"}]},{"@type":"WebSite","@id":"https:\/\/www.inmotionhosting.com\/support\/#website","url":"https:\/\/www.inmotionhosting.com\/support\/","name":"InMotion Hosting Support Center","description":"Web Hosting Support &amp; Tutorials","publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.inmotionhosting.com\/support\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.inmotionhosting.com\/support\/#organization","name":"InMotion Hosting","url":"https:\/\/www.inmotionhosting.com\/support\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/02\/inmotion-hosting-logo-yoast.jpg","width":696,"height":696,"caption":"InMotion Hosting"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/inmotionhosting\/","https:\/\/x.com\/InMotionHosting"]},{"@type":"Person","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f","name":"Christopher Maiorana","description":"Christopher Maiorana joined the InMotion community team in 2015 and regularly dispenses tips and tricks in the Support Center, Community Q&A, and the InMotion Hosting Blog.","sameAs":["https:\/\/www.linkedin.com\/in\/chris-m-4623144b\/"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/christopherm\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"primary_category":null,"_links":{"self":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4298","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=4298"}],"version-history":[{"count":6,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4298\/revisions"}],"predecessor-version":[{"id":92576,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4298\/revisions\/92576"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=4298"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=4298"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=4298"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}