{"id":4309,"date":"2018-01-26T15:54:26","date_gmt":"2018-01-26T15:54:26","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2018\/01\/26\/connect-local-project-to-github\/"},"modified":"2023-11-02T16:15:02","modified_gmt":"2023-11-02T20:15:02","slug":"connect-local-project-to-github","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/","title":{"rendered":"Connect Local Project to a Github Repository"},"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\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository-1024x538.png\" alt=\"Connect Local Project to a Github Repository Hero Image\" class=\"wp-image-107683\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-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>In this article, we\u2019re going to learn how to <strong>connect a local project to a Github repository<\/strong> and\u2014on the flip side\u2014how to \u201cclone\u201d a GitHub repository to your computer. We have already demonstrated how you can use your <a href=\"\/vps-hosting\/\">VPS account<\/a> as a <a href=\"\/support\/website\/git\/setting-up-your-remote-repository-with-git\/\">Git server<\/a>, but we are using free Github hosting in this example.<\/p>\n\n\n\n<p>There are two cases we will take into account here.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Connect a local project to a remote repository hosted by GitHub<\/li>\n\n\n\n<li>Clone a GitHub repository as a local project<\/li>\n<\/ol>\n\n\n\n<p>The second case automatically creates a working directory with all the remote repository settings in place. This is the popular option if you want to work on somebody else\u2019s code or if you are going to be working on your code from a different workstation.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Add Your GitHub Repository to an Existing Project<\/h2>\n\n\n\n<p>In this first case, we are going to take the following points as given:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You have a local project under Git management<\/li>\n\n\n\n<li>You want to use a remote repo at GitHub<\/li>\n\n\n\n<li>All you need to do is add the GitHub repo as a remote location for your local project<\/li>\n<\/ul>\n\n\n\n<p>As we have done in previous tutorials, we\u2019re going to be using your operating system\u2019s native command line utility to complete these steps. <b>All you need to do is open your computer\u2019s default Terminal app.<\/b><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Once you are on a command line, navigate to your project\u2019s directory<\/li>\n\n\n\n<li>Optional: to make sure you\u2019re in the right place, you can type <em>git status<\/em> to receive git-related output:\n<pre class=\"cli\">chris@computer# <span style=\"color: green;\">git status<\/span> On branch master Your branch is up-to-date with 'origin\/master'.<\/pre>\n<\/li>\n\n\n\n<li><!-- hub2Factor_-06.bmp --><a href=\"\/support\/images\/stories\/git\/hub2Factor_-06.bmp\" rel=\"lightbox-0\"><img decoding=\"async\" class=\"std_ss\" style=\"float: right; margin: 0px 15px 15px 15px;\" src=\"\/support\/images\/stories\/git\/hub2Factor_-06.bmp\" alt=\"Github Login screen\"><\/a>\n<div style=\"clear: both;\">\u00a0<\/div>\n<p>With your web browser, log into your GitHub account<\/p>\n<div style=\"clear: both;\">\u00a0<\/div>\n<\/li>\n\n\n\n<li>Open your desired repository<\/li>\n\n\n\n<li><!-- git-create-repo_-04.bmp --><a href=\"\/support\/images\/stories\/git\/git-create-repo_-04.bmp\" rel=\"lightbox-0\"><img decoding=\"async\" class=\"std_ss\" style=\"float: right; margin: 0px 15px 15px 15px;\" src=\"\/support\/images\/stories\/git\/git-create-repo_-04.bmp\" alt=\"Clone github repo\"><\/a>\n<div style=\"clear: both;\">\u00a0<\/div>\n<div style=\"clear: both;\">\u00a0<\/div>\n<p>Copy the <em>remote repository URL<\/em> by clicking the <b>Clone or download<\/b> button followed by the <b>copy icon<\/b><\/p>\n<div style=\"clear: both;\">\u00a0<\/div>\n<\/li>\n\n\n\n<li>Back in your terminal app, copy the remote repository URL after the <em>git remote add<\/em> command (substitute \u201cname-of-repo\u201d with whatever word you would like to associate with this remote repository, or call it \u201corigin\u201d):\n<pre class=\"cli\">chris@computer# git remote add <span style=\"color: green;\">name-of-repo &lt;URL&gt;<\/span><\/pre>\n<\/li>\n\n\n\n<li>Use <em>git remote -v<\/em> to check if the remote repository was added successfully<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">How to Clone a Repository from GitHub<\/h2>\n\n\n\n<p>This case is a little easier to accomplish and requires only the following circumstances:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You are interested in a certain remote repository on GitHub<\/li>\n\n\n\n<li>You want to copy all of the working files for that project to your computer<\/li>\n\n\n\n<li>You want the local instance to have the \u201corigin\u201d repository already added<\/li>\n<\/ul>\n\n\n\n<p>In order to accomplish the above, all you need to run is one simple command, <em>git clone<\/em> followed by the remote repository URL.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Open your terminal app<\/li>\n\n\n\n<li>Navigate to the desired location on your computer (a spot where you would like the project directory to reside, usually your user\u2019s home folder or \u201c~\u201d)<\/li>\n\n\n\n<li><a href=\"\/support\/images\/stories\/git\/git-create-repo_-04.bmp\" rel=\"lightbox-0\"><img decoding=\"async\" class=\"std_ss\" style=\"float: right; margin: 0px 15px 15px 15px;\" src=\"\/support\/images\/stories\/git\/git-create-repo_-04.bmp\" alt=\"Clone github repo\"><\/a>\n<div style=\"clear: both;\">\u00a0<\/div>\n<div style=\"clear: both;\">\u00a0<\/div>\n<p>Copy the remote repository URL from GitHub, as we did in the above case<\/p>\n<div style=\"clear: both;\">\u00a0<\/div>\n<\/li>\n\n\n\n<li>Run the <em>git clone<\/em> command followed by the URL you copied:\n<pre class=\"cli\">chris@computer# git clone <span style=\"color: green;\">&lt;URL&gt;<\/span><\/pre>\n<\/li>\n<\/ol>\n\n\n\n<p>Following this command, Git will automatically grab all of the contents of the remote repository and copy them into a new directory named after the repository itself.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we&#8217;re going to learn how to connect a local project to a Github repository and\u2014on the flip side\u2014how to &#8220;clone&#8221; a GitHub repository to your computer. We have already demonstrated how you can use your VPS account as a Git server, but we are using free Github hosting in this example. There<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/\"> Read More ><\/a><\/p>\n","protected":false},"author":57014,"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-4309","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>Connect Local Project to a Github Repository | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article, we&#039;ll learn how to connect a local Git project to a remote repository hosted by GitHub.\" \/>\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\/connect-local-project-to-github\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Connect Local Project to a Github Repository | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article, we&#039;ll learn how to connect a local Git project to a remote repository hosted by GitHub.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/\" \/>\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-26T15:54:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-02T20:15:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository-1024x538.png\" \/>\n<meta name=\"author\" content=\"InMotion Hosting Contributor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/InMotionHosting\" \/>\n<meta name=\"twitter:site\" content=\"@InMotionHosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InMotion Hosting Contributor\" \/>\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\/connect-local-project-to-github\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/\"},\"author\":{\"name\":\"InMotion Hosting Contributor\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644\"},\"headline\":\"Connect Local Project to a Github Repository\",\"datePublished\":\"2018-01-26T15:54:26+00:00\",\"dateModified\":\"2023-11-02T20:15:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/\"},\"wordCount\":516,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository-1024x538.png\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/\",\"name\":\"Connect Local Project to a Github Repository | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository-1024x538.png\",\"datePublished\":\"2018-01-26T15:54:26+00:00\",\"dateModified\":\"2023-11-02T20:15:02+00:00\",\"description\":\"In this article, we'll learn how to connect a local Git project to a remote repository hosted by GitHub.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Connect Local Project to a Github Repository\"}]},{\"@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\/f9a4fc454cd1df128ee8e898d30d4644\",\"name\":\"InMotion Hosting Contributor\",\"description\":\"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!\",\"sameAs\":[\"https:\/\/www.linkedin.com\/company\/inmotion-hosting\/\",\"https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting\"],\"url\":\"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Connect Local Project to a Github Repository | InMotion Hosting","description":"In this article, we'll learn how to connect a local Git project to a remote repository hosted by GitHub.","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\/connect-local-project-to-github\/","og_locale":"en_US","og_type":"article","og_title":"Connect Local Project to a Github Repository | InMotion Hosting","og_description":"In this article, we'll learn how to connect a local Git project to a remote repository hosted by GitHub.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2018-01-26T15:54:26+00:00","article_modified_time":"2023-11-02T20:15:02+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository-1024x538.png","type":"","width":"","height":""}],"author":"InMotion Hosting Contributor","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/InMotionHosting","twitter_site":"@InMotionHosting","twitter_misc":{"Written by":"InMotion Hosting Contributor","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/"},"author":{"name":"InMotion Hosting Contributor","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/f9a4fc454cd1df128ee8e898d30d4644"},"headline":"Connect Local Project to a Github Repository","datePublished":"2018-01-26T15:54:26+00:00","dateModified":"2023-11-02T20:15:02+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/"},"wordCount":516,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository-1024x538.png","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/","name":"Connect Local Project to a Github Repository | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository-1024x538.png","datePublished":"2018-01-26T15:54:26+00:00","dateModified":"2023-11-02T20:15:02+00:00","description":"In this article, we'll learn how to connect a local Git project to a remote repository hosted by GitHub.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2023\/11\/Connect-local-Project-to-a-GitHub-Repository.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/connect-local-project-to-github\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"Connect Local Project to a Github Repository"}]},{"@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\/f9a4fc454cd1df128ee8e898d30d4644","name":"InMotion Hosting Contributor","description":"InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals!","sameAs":["https:\/\/www.linkedin.com\/company\/inmotion-hosting\/","https:\/\/x.com\/https:\/\/twitter.com\/InMotionHosting"],"url":"https:\/\/www.inmotionhosting.com\/support\/author\/inmotion-hosting-contributor\/"}]}},"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\/4309","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\/57014"}],"replies":[{"embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/comments?post=4309"}],"version-history":[{"count":5,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4309\/revisions"}],"predecessor-version":[{"id":107685,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4309\/revisions\/107685"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=4309"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=4309"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=4309"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}