{"id":19602,"date":"2020-11-22T06:54:25","date_gmt":"2020-11-22T14:54:25","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=19602"},"modified":"2023-12-01T04:04:14","modified_gmt":"2023-12-01T12:04:14","slug":"git-rm","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-rm\/","title":{"rendered":"How to Use the git rm Command"},"content":{"rendered":"\n<p><em>The git rm command removes a file from a Git repository. This command removes a file from your file system and then removes it from the list of files tracked by a Git repository. The &#8211;cached flag lets you delete a file from a Git repository without deleting it on your file system.<\/em><\/p>\n\n\n\n<p>How do you remove a file from a <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">Git repository<\/a>? That\u2019s a good question. It\u2019s not always the case that you want a file to be part of a repository forever. You may decide that a file is no longer necessary to a project, and therefore you\u2019ll want to remove it from the Git repository.\n\n<\/p>\n\n\n\n<p>To remove a file from a Git repository, you can use the git rm command. It\u2019s the opposite of the <a href=\"https:\/\/careerkarma.com\/blog\/git-add\/\">git add command<\/a>; it removes files.\n\n<\/p>\n\n\n\n<p>In this guide, we\u2019re going to discuss how to use the git rm command. We\u2019ll walk through an example of the git rm command to show you how it works. Let\u2019s begin!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How Files Are Managed in Git<\/h2>\n\n\n\n<p>Before we discuss how to use the git rm command, we need to understand how files are managed in the Git version control system.\n\n<\/p>\n\n\n\n<p>Files inside a Git repository can either be tracked or untracked.\n\n<\/p>\n\n\n\n<p>Tracked files are files which have been included in a git commit. <a href=\"https:\/\/careerkarma.com\/blog\/git-remove-untracked-files\/\">Untracked files<\/a> are files which have not yet been committed to the repository. Typically, untracked files are those that you have created before creating a commit.\n\n<\/p>\n\n\n\n<p>To add a file to a <a href=\"https:\/\/careerkarma.com\/blog\/git-commit\/\">Git commit<\/a>, you can use the git add command. This will make it a tracked file. If you want to stop a file from being tracked, you can use the git rm command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Use the git rm Command<\/h2>\n\n\n\n<p>The git rm command removes a file or group of files from a Git repository. A file is removed from both your machine and the Git repository. To preserve the file on your local machine, use the &#8211;cached flag.\n\n<\/p>\n\n\n\n<p>Without any flags, this command will remove a file from both a Git repository and your local working directory. This means that it deletes a file, just like the <a href=\"https:\/\/careerkarma.com\/blog\/linux-delete-directory\/\">Linux rm command<\/a> deletes a file from a computer.\n\n<\/p>\n\n\n\n<p>The simplest use of this command is to remove a file. Let\u2019s remove a file called settings.json from a Git repository:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git rm settings.json<\/pre><\/div>\n\n\n\n<p>This command removes settings.json from the tracking area of our repository. You can use this same command to remove multiple files. To do so, separate the names of the files or folders you want to remove with a space:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git rm settings.json .env<\/pre><\/div>\n\n\n\n<p>This will remove the settings.json and .env files from a repository.\n\n<\/p>\n\n\n\n<p>By default, Git will conduct a safety check when you run the rm command to unstage and remove paths. This will make sure that the files on your current branch are the same as those in the staging index. You can override this behavior by using the -f, or \u2013force, flag:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git rm -f settings.json<\/pre><\/div>\n\n\n\n<p>You should only use the -f flag when you are absolutely sure that you want to remove a file. Otherwise, a merge conflict may occur later down the line. If this does happen, you can use our guide on how to resolve a merge conflict to help you out.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Git rm &#8211;cached<\/h2>\n\n\n\n<p>The Git rm \u2013cached flag removes a file from the staging area. The files from the working directory will remain intact. This means that you\u2019ll still have a copy of the file locally. The file will be removed from the index tracking your Git project.\n\n<\/p>\n\n\n\n<p>Let\u2019s remove the settings.json working tree file from our repository but keep it in our project directory:\n<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git rm --cached settings.json<\/pre><\/div>\n\n\n\n<p>When we push our next commit, the settings.json file will be removed.\n\n<\/p>\n\n\n\n<p>As long as a file exists in your local working directory, you can add it back to your Git repository. You can do so using the git add command. Read more about git add in our tutorial on the <a href=\"https:\/\/careerkarma.com\/blog\/git-add\/\">git add command<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Undo a git rm Command<\/h2>\n\n\n\n<p>The git rm command only updates the staging area and the working directory until a commit has been made. This means you can revert the command. To undo a git rm command, you can reset your repository to the last commit using <a href=\"https:\/\/careerkarma.com\/blog\/git-reset\/\">git reset<\/a>:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git reset HEAD<\/pre><\/div>\n\n\n\n<p>The <a href=\"https:\/\/careerkarma.com\/blog\/what-is-a-git-head\/\">Git HEAD commit<\/a> represents the last commit in our repository. Thus, this command reverts our repository to the last commit.<\/p>\n\n\n\n<p>You can revert a git rm command even if you have already committed the changes to the repository. To do so, you can use the git reset command and specify the hash of the commit to which you want to revert:\n\n<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git reset a7e3cce9637c74281e6590003b39d3990bbb2731<\/pre><\/div>\n\n\n\n<p>We are reverting a git repository to its previous commit. The string of letters after the word \u201creset\u201d is the hash for the last commit.\n\n<\/p>\n\n\n\n<p>Once we revert the repository, we can view how that repository appeared before the commit. This means that our file will still be staged. In other words, our git rm command will have been undone.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Git rm vs. rm<\/h2>\n\n\n\n<p>The git rm command removes a file from both your working machine and a Git repository. The rm command, on the other hand, does not remove a file from a Git repository.<\/p>\n\n\n\n<p>If you want to remove a file from your Git repository, you must use git rm. This is because the git rm command executes instructions to remove a file from a Git repository. Not all files on a Linux system are in a Git repository, so the Linux rm command does not remove files from a Git repository.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The git rm command allows you to remove a file from a Git repository and your working directory. If you only want to remove a file from your Git repository, you can use the \u2013cached flag.<\/p>\n\n\n\n<p>Now you\u2019re ready to use the git rm command like a command line expert!<\/p>\n\n\n\n<p>To learn more about working with Git, read our <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">How to Learn Git guide<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"The git rm command removes a file from a Git repository. This command removes a file from your file system and then removes it from the list of files tracked by a Git repository. The --cached flag lets you delete a file from a Git repository without deleting it on your file system. How do&hellip;","protected":false},"author":240,"featured_media":19604,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-19602","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-git"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Git","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Use the git rm Command: A Step-By-Step Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The git rm command removes a file from a Git repository. On Career Karma, learn how to use the git rm command.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/git-rm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use the git rm Command\" \/>\n<meta property=\"og:description\" content=\"The git rm command removes a file from a Git repository. On Career Karma, learn how to use the git rm command.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-rm\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-11-22T14:54:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:04:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-sjO_VsSkN9s-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"668\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-rm\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-rm\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"How to Use the git rm Command\",\"datePublished\":\"2020-11-22T14:54:25+00:00\",\"dateModified\":\"2023-12-01T12:04:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-rm\\\/\"},\"wordCount\":1013,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-rm\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/christina-wocintechchat-com-sjO_VsSkN9s-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-rm\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-rm\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-rm\\\/\",\"name\":\"How to Use the git rm Command: A Step-By-Step Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-rm\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-rm\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/christina-wocintechchat-com-sjO_VsSkN9s-unsplash.jpg\",\"datePublished\":\"2020-11-22T14:54:25+00:00\",\"dateModified\":\"2023-12-01T12:04:14+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The git rm command removes a file from a Git repository. On Career Karma, learn how to use the git rm command.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-rm\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-rm\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-rm\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/christina-wocintechchat-com-sjO_VsSkN9s-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/christina-wocintechchat-com-sjO_VsSkN9s-unsplash.jpg\",\"width\":1000,\"height\":668},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-rm\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Git\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Use the git rm Command\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/jamesgallagher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Use the git rm Command: A Step-By-Step Guide | Career Karma","description":"The git rm command removes a file from a Git repository. On Career Karma, learn how to use the git rm command.","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:\/\/careerkarma.com\/blog\/git-rm\/","og_locale":"en_US","og_type":"article","og_title":"How to Use the git rm Command","og_description":"The git rm command removes a file from a Git repository. On Career Karma, learn how to use the git rm command.","og_url":"https:\/\/careerkarma.com\/blog\/git-rm\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-11-22T14:54:25+00:00","article_modified_time":"2023-12-01T12:04:14+00:00","og_image":[{"width":1000,"height":668,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-sjO_VsSkN9s-unsplash.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/git-rm\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-rm\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"How to Use the git rm Command","datePublished":"2020-11-22T14:54:25+00:00","dateModified":"2023-12-01T12:04:14+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-rm\/"},"wordCount":1013,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-rm\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-sjO_VsSkN9s-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-rm\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-rm\/","url":"https:\/\/careerkarma.com\/blog\/git-rm\/","name":"How to Use the git rm Command: A Step-By-Step Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-rm\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-rm\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-sjO_VsSkN9s-unsplash.jpg","datePublished":"2020-11-22T14:54:25+00:00","dateModified":"2023-12-01T12:04:14+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The git rm command removes a file from a Git repository. On Career Karma, learn how to use the git rm command.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-rm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-rm\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-rm\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-sjO_VsSkN9s-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-sjO_VsSkN9s-unsplash.jpg","width":1000,"height":668},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-rm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Git","item":"https:\/\/careerkarma.com\/blog\/git\/"},{"@type":"ListItem","position":3,"name":"How to Use the git rm Command"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19602","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=19602"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19602\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/19604"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=19602"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=19602"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=19602"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}