{"id":4292,"date":"2018-01-22T17:44:05","date_gmt":"2018-01-22T17:44:05","guid":{"rendered":"https:\/\/www.inmotionhosting.com\/support\/2018\/01\/22\/how-to-add-files-to-git-2\/"},"modified":"2022-01-17T15:10:57","modified_gmt":"2022-01-17T20:10:57","slug":"how-to-add-files-to-git-2","status":"publish","type":"post","link":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/","title":{"rendered":"How to Add Files to 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\/2022\/01\/How-to-Add-Files-to-Git-1024x538.png\" alt=\"How to add files to git\" class=\"wp-image-93264\" srcset=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git-1024x538.png 1024w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git-300x158.png 300w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git-768x403.png 768w, https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git.png 1200w\" sizes=\"auto, (min-width: 1360px) 876px, (min-width: 960px) calc(61.58vw + 51px), calc(100vw - 80px)\" \/><\/figure>\n\n\n\n<p>\nBy now, you should have a good grasp on the <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-basics\/\">basics of Git<\/a>.  In this article, you will learn how to add files to Git.  This means you are, in effect, telling Git which files in your project you would like to monitor for changes.  Adding files, and modifications to those files, into the \u201cstaging\u201d index is one of the most fundamental actions you will take in Git over many years of using it.\n<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><a href=\"#configure-git-user\">Configure Your Git User<\/a><\/li><li><a href=\"#add-files\">Add Files To The Staging Index<\/a><\/li><li><a href=\"#checking-status\">Checking the Status of Your Files<\/a><\/li><\/ul>\n\n\n\n<p>\nNote: this article assumes you are using Git on the command line.  Thus, all of the commands below will reflect the command line usage.  However, the concepts will remain the same even if you are using one of the popular Git graphical interfaces.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"configure-git-user\">Configure Your Git User<\/h2>\n\n\n\n<p>\nYou will first want to make sure that you have added a username to your Git installation.  This is done on the local workstation.  Otherwise, Git will not know what name and email to sign on your commits.  Git keeps great records, and that part of that process involves knowing who is contributing what.\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">git config --global user.name \"<span style=\"color:green;&gt;\">Joe Example<\/span>\"<\/pre>\n\n\n\n<p>\nAnd you will then do the same for the email address:\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">git config --global user.email <span style=\"color:green;\">joe@example.com<\/span><\/pre>\n\n\n\n<p>\nAlternatively, you can places these values in your <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/git-config\/\">Git configuration file<\/a>.  For many users, keeping an up-to-date configuration file makes transferring your data to other workstations much easier and faster.\n<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"add-files\">Add Files To The Staging Index<\/h2>\n\n\n\n<p>\nYou will constantly find yourself adding files to the staging index in Git.  You will be both adding new files for tracking and adding modifications to files that are already being tracked.\n<\/p>\n\n\n\n<p>\nTo add a new file for tracking, use the \u201cadd\u201d command followed by the name of the file:\n<\/p>\n\n\n\n<pre id=\"org0d1ce25\" class=\"wp-block-preformatted example\">git add <span style=\"color:green;\">file.txt<\/span>\n<\/pre>\n\n\n\n<p>\nThere will likely be occasions in which you will want to add the full contents of a sub-directory to the staging index.  For example, if you wanted to add the full contents of the \u201cassets\u201d directory to the staging index, you can add the directory followed by a forward slash and an asterisk:\n<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">git add <span style=\"color:green;\">assets\/*<\/span><\/pre>\n\n\n\n<p>\nYou can also add the entire contents of your working directory to staging with the \u201cadd\u201d command followed by the <code>-A<\/code> option.\n<\/p>\n\n\n\n<pre id=\"org3fa927a\" class=\"wp-block-preformatted example\">git add -A\n<\/pre>\n\n\n\n<p>\nRemember that each time you make modifications to a file you will need to add those changes to the staging index in the same fashion that you added the file itself.  If you have already added files to tracking and only want to record modifications without adding new files, you can use the \u201cadd\u201d command followed by the <code>.<\/code> option.\n<\/p>\n\n\n\n<pre id=\"org5a93cb4\" class=\"wp-block-preformatted example\">git add .\n<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"checking-status\">Checking the Status of Your Files<\/h2>\n\n\n\n<p>\nOften, you will want to check the status of the files in your project.  This can tell you which files are being tracked, not tracked, or modified.  In order to get this information, you can use the <code>status<\/code> command:\n<\/p>\n\n\n\n<pre id=\"orgef31b8c\" class=\"wp-block-preformatted example\">git status\n<\/pre>\n\n\n\n<p>\nWell done, you now know to add files to Git for tracking.  Next, learn how to make <a href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-commit-changes-in-git-2\/\">commits in Git<\/a>.\n<\/p>\n","protected":false},"excerpt":{"rendered":"<p>By now, you should have a good grasp on the basics of Git. In this article, you will learn how to add files to Git. This means you are, in effect, telling Git which files in your project you would like to monitor for changes. Adding files, and modifications to those files, into the \u201cstaging\u201d<a class=\"moretag\" href=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/\"> 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-4292","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 Add Files to Git | InMotion Hosting<\/title>\n<meta name=\"description\" content=\"In this article, we&#039;ll show you how you can add files to your Git repository.\" \/>\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\/how-to-add-files-to-git-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Add Files to Git | InMotion Hosting\" \/>\n<meta property=\"og:description\" content=\"In this article, we&#039;ll show you how you can add files to your Git repository.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/\" \/>\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-22T17:44:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-01-17T20:10:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git-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\/how-to-add-files-to-git-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/\"},\"author\":{\"name\":\"Christopher Maiorana\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f\"},\"headline\":\"How to Add Files to Git\",\"datePublished\":\"2018-01-22T17:44:05+00:00\",\"dateModified\":\"2022-01-17T20:10:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/\"},\"wordCount\":491,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git-1024x538.png\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/\",\"name\":\"How to Add Files to Git | InMotion Hosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git-1024x538.png\",\"datePublished\":\"2018-01-22T17:44:05+00:00\",\"dateModified\":\"2022-01-17T20:10:57+00:00\",\"description\":\"In this article, we'll show you how you can add files to your Git repository.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#primaryimage\",\"url\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git.png\",\"contentUrl\":\"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git.png\",\"width\":1200,\"height\":630},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.inmotionhosting.com\/support\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Add Files to 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":"How to Add Files to Git | InMotion Hosting","description":"In this article, we'll show you how you can add files to your Git repository.","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\/how-to-add-files-to-git-2\/","og_locale":"en_US","og_type":"article","og_title":"How to Add Files to Git | InMotion Hosting","og_description":"In this article, we'll show you how you can add files to your Git repository.","og_url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/","og_site_name":"InMotion Hosting Support Center","article_publisher":"https:\/\/www.facebook.com\/inmotionhosting\/","article_published_time":"2018-01-22T17:44:05+00:00","article_modified_time":"2022-01-17T20:10:57+00:00","og_image":[{"url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git-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\/how-to-add-files-to-git-2\/#article","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/"},"author":{"name":"Christopher Maiorana","@id":"https:\/\/www.inmotionhosting.com\/support\/#\/schema\/person\/c6922c56c84e17079fd558e07b7ef72f"},"headline":"How to Add Files to Git","datePublished":"2018-01-22T17:44:05+00:00","dateModified":"2022-01-17T20:10:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/"},"wordCount":491,"commentCount":0,"publisher":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#organization"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git-1024x538.png","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/","url":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/","name":"How to Add Files to Git | InMotion Hosting","isPartOf":{"@id":"https:\/\/www.inmotionhosting.com\/support\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#primaryimage"},"image":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#primaryimage"},"thumbnailUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git-1024x538.png","datePublished":"2018-01-22T17:44:05+00:00","dateModified":"2022-01-17T20:10:57+00:00","description":"In this article, we'll show you how you can add files to your Git repository.","breadcrumb":{"@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#primaryimage","url":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git.png","contentUrl":"https:\/\/www.inmotionhosting.com\/support\/wp-content\/uploads\/2022\/01\/How-to-Add-Files-to-Git.png","width":1200,"height":630},{"@type":"BreadcrumbList","@id":"https:\/\/www.inmotionhosting.com\/support\/website\/git\/how-to-add-files-to-git-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.inmotionhosting.com\/support\/"},{"@type":"ListItem","position":2,"name":"How to Add Files to 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\/4292","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=4292"}],"version-history":[{"count":4,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4292\/revisions"}],"predecessor-version":[{"id":93265,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/posts\/4292\/revisions\/93265"}],"wp:attachment":[{"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/media?parent=4292"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/categories?post=4292"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.inmotionhosting.com\/support\/wp-json\/wp\/v2\/tags?post=4292"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}