{"id":23676,"date":"2020-12-28T06:10:51","date_gmt":"2020-12-28T14:10:51","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=23676"},"modified":"2020-12-29T07:34:09","modified_gmt":"2020-12-29T15:34:09","slug":"gitignore-not-working","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/","title":{"rendered":"Gitignore Not Working? A Help Guide."},"content":{"rendered":"\n<p>The title says it all. There are many cases where you might be troubleshooting the .gitignore file because it is not working as expected.<\/p>\n\n\n\n<p>The .gitignore file plays a crucial role in Git repositories. If you&#8217;re .gitignore file is not working, you may accidentally track changes that should be kept private. Some of these changes may contain sensitive information, such as API keys.<\/p>\n\n\n\n<p>Two causes of a broken .gitignore file are:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Adding a file to .gitignore after you have committed it.<\/li><li>Referring to the wrong file name or path in your .gitignore file.<\/li><\/ul>\n\n\n\n<p>We&#8217;ll discuss both of these issues in this tutorial and how to solve them.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What is the .gitignore File?<\/strong><\/h2>\n\n\n\n<p>The .gitignore file contains a list of all the files you do not want to save to your Git repository. This file is often used to keep configuration and environment files outside a repository. These files often contain private information and should not be in any remote repository.<\/p>\n\n\n\n<p>This file should be named and saved explicitly as <em>.gitignore<\/em>. On this plain text file, you would then add the paths of files or directories you want Git to not track. <strong>Whatever is added to this file Git will ignore and not add to its tracking tree.<\/strong><\/p>\n\n\n\n<p>Here\u2019s an example of a gitignore file contents:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>node_modules\/\n.env<\/pre><\/div>\n\n\n\n<p>On this file we basically are telling Git to ignore a specific file. This is the .env file, which often contains API keys. We&#8217;re also ignoring the node_module folder that contains all installed NPM packages.<\/p>\n\n\n\n<p>Common files to ignore include .DS_Store files, .env files, and config files. .DS_Store files are often found on macOS operating systems and do not need to be part of a Git repository.<\/p>\n\n\n\n<p>Most .gitignore files are placed in the root directory of a repository. To learn more about .gitignore files, check out our <a href=\"https:\/\/careerkarma.com\/blog\/gitignore\/\">.gitignore files guide for beginners<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Scenario A: Adding a File to .gitignore After Committing it<\/strong><\/h2>\n\n\n\n<p>We could complain why gitignore is not working after we mistakenly committed a file that was supposed to be ignored. So we add it to gitignore after that fact and complain that Git is still tracking it.<\/p>\n\n\n\n<p>Well the reason for this is that we need to add files\/folders before committing them. Git is already tracking them, so to untrack them again, we will need to do the following command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git rm -rf --cached &lt;path&gt;<\/pre><\/div>\n\n\n\n<p>The first part git rm removes the <em>&lt;path&gt;.<\/em> The <em>&#8211;cached<\/em> flag specifies it is removed from the index but stays in the local directory. <em>r<\/em> is recursive removal if given a directory path and <em>f<\/em> forces it. If you are working with just file and still want to keep it on your local do:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git rm --cached &lt;file&gt;<\/pre><\/div>\n\n\n\n<p>So with this you are indicating Git that you don\u2019t want to track the file\/folder provided anymore. <strong>Now try again and your gitignore will work as it should<\/strong>. Just remember that the file\/folder must be specified for gitignore to work!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Scenario B: Gitignore Created Before Commit and Still Not Tracking File<\/strong><\/h2>\n\n\n\n<p>If .gitignore is still not tracking the file, the solution might be as simple as checking you are referring to the right file. You need to specify exactly which files you want the .gitignore file to ignore. Any spelling errors or incorrect path names need to be fixed manually by you.<\/p>\n\n\n\n<p>Consider this example:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>*.pyyc<\/pre><\/div>\n\n\n\n<p>The .gitignore file tells Git which files to ignore, which in this case is all .pyyc files. But, our intent is to ignore .pyc files. .pyc files are configuration files for Python programs. Our .gitignore file does not know this so we need to fix our rule:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>*.pyc<\/pre><\/div>\n\n\n\n<p>Our repository will now ignore all .pyc files.<\/p>\n\n\n\n<p>Also check that you don\u2019t have any trailing space at the beginning nor end of file\/folder declaration.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>We discussed a few scenarios and possibilities of solutions for various cases when gitignore wasn\u2019t working as expected. The main takeaway is that you must understand where the files\/directories are located so you can add the correct path.<\/p>\n\n\n\n<p>You must be aware that you should add any files that need to be ignored as soon as you create them. If you happen to have committed it by mistake, luckily we have the <em>git rm -rf &#8211;cached &lt;path&gt;.<\/em> This command will take a file out from the Git workflow. Then, you can add the to gitignore so that your file will be ignored.<\/p>\n\n\n\n<p><strong>Final Note<\/strong>: There might be other cases where the git reset might be useful. I wrote an article regarding <a href=\"https:\/\/careerkarma.com\/blog\/git-reset\/\">git reset<\/a> that will be useful in these cases. So Git reset will be like undoing, going back in time, so in some cases that is what you want.<\/p>\n\n\n\n<p>Do you want to learn more about Git? Read our <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">How to Learn Git guide<\/a>. In this guide you&#8217;ll find expert advice on learning Git and guidance on top learning resources.<\/p>\n","protected":false},"excerpt":{"rendered":"The title says it all. There are many cases where you might be troubleshooting the .gitignore file because it is not working as expected. The .gitignore file plays a crucial role in Git repositories. If you're .gitignore file is not working, you may accidentally track changes that should be kept private. Some of these changes&hellip;","protected":false},"author":86,"featured_media":23108,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-23676","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>Gitignore Not Working | Career Karma<\/title>\n<meta name=\"description\" content=\"Have you ever wondered why your Gitignore file is not working? We\u2019ll show you what is going on and offer ways to troubleshoot. Learn Git with CareerKarma.\" \/>\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\/gitignore-not-working\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Gitignore Not Working? A Help Guide.\" \/>\n<meta property=\"og:description\" content=\"Have you ever wondered why your Gitignore file is not working? We\u2019ll show you what is going on and offer ways to troubleshoot. Learn Git with CareerKarma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/\" \/>\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-12-28T14:10:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-29T15:34:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/erik-mclean-E1nRYGo1cwg-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Felipe Boh\u00f3rquez\" \/>\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=\"Felipe Boh\u00f3rquez\" \/>\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:\\\/\\\/careerkarma.com\\\/blog\\\/gitignore-not-working\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/gitignore-not-working\\\/\"},\"author\":{\"name\":\"Felipe Boh\u00f3rquez\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e2cbf72dcbfaf9e81a8b6a38c1bd4220\"},\"headline\":\"Gitignore Not Working? A Help Guide.\",\"datePublished\":\"2020-12-28T14:10:51+00:00\",\"dateModified\":\"2020-12-29T15:34:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/gitignore-not-working\\\/\"},\"wordCount\":827,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/gitignore-not-working\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/erik-mclean-E1nRYGo1cwg-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/gitignore-not-working\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/gitignore-not-working\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/gitignore-not-working\\\/\",\"name\":\"Gitignore Not Working | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/gitignore-not-working\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/gitignore-not-working\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/erik-mclean-E1nRYGo1cwg-unsplash.jpg\",\"datePublished\":\"2020-12-28T14:10:51+00:00\",\"dateModified\":\"2020-12-29T15:34:09+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e2cbf72dcbfaf9e81a8b6a38c1bd4220\"},\"description\":\"Have you ever wondered why your Gitignore file is not working? We\u2019ll show you what is going on and offer ways to troubleshoot. Learn Git with CareerKarma.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/gitignore-not-working\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/gitignore-not-working\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/gitignore-not-working\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/erik-mclean-E1nRYGo1cwg-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/erik-mclean-E1nRYGo1cwg-unsplash.jpg\",\"width\":1020,\"height\":680,\"caption\":\"Macbook Pro Keyboard\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/gitignore-not-working\\\/#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\":\"Gitignore Not Working? A Help Guide.\"}]},{\"@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\\\/e2cbf72dcbfaf9e81a8b6a38c1bd4220\",\"name\":\"Felipe Boh\u00f3rquez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/Screen-Shot-2020-08-17-at-11.10.42-AM-150x150.png\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/Screen-Shot-2020-08-17-at-11.10.42-AM-150x150.png\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/Screen-Shot-2020-08-17-at-11.10.42-AM-150x150.png\",\"caption\":\"Felipe Boh\u00f3rquez\"},\"description\":\"Felipe Boh\u00f3rquez is a Software Engineer and technical writer at Career Karma. He covers all things frontend and backend development.\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/felipe-bohorquez\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Gitignore Not Working | Career Karma","description":"Have you ever wondered why your Gitignore file is not working? We\u2019ll show you what is going on and offer ways to troubleshoot. Learn Git with CareerKarma.","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\/gitignore-not-working\/","og_locale":"en_US","og_type":"article","og_title":"Gitignore Not Working? A Help Guide.","og_description":"Have you ever wondered why your Gitignore file is not working? We\u2019ll show you what is going on and offer ways to troubleshoot. Learn Git with CareerKarma.","og_url":"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-12-28T14:10:51+00:00","article_modified_time":"2020-12-29T15:34:09+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/erik-mclean-E1nRYGo1cwg-unsplash.jpg","type":"image\/jpeg"}],"author":"Felipe Boh\u00f3rquez","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Felipe Boh\u00f3rquez","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/"},"author":{"name":"Felipe Boh\u00f3rquez","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e2cbf72dcbfaf9e81a8b6a38c1bd4220"},"headline":"Gitignore Not Working? A Help Guide.","datePublished":"2020-12-28T14:10:51+00:00","dateModified":"2020-12-29T15:34:09+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/"},"wordCount":827,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/erik-mclean-E1nRYGo1cwg-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/gitignore-not-working\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/","url":"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/","name":"Gitignore Not Working | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/erik-mclean-E1nRYGo1cwg-unsplash.jpg","datePublished":"2020-12-28T14:10:51+00:00","dateModified":"2020-12-29T15:34:09+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e2cbf72dcbfaf9e81a8b6a38c1bd4220"},"description":"Have you ever wondered why your Gitignore file is not working? We\u2019ll show you what is going on and offer ways to troubleshoot. Learn Git with CareerKarma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/gitignore-not-working\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/erik-mclean-E1nRYGo1cwg-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/erik-mclean-E1nRYGo1cwg-unsplash.jpg","width":1020,"height":680,"caption":"Macbook Pro Keyboard"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/gitignore-not-working\/#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":"Gitignore Not Working? A Help Guide."}]},{"@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\/e2cbf72dcbfaf9e81a8b6a38c1bd4220","name":"Felipe Boh\u00f3rquez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/Screen-Shot-2020-08-17-at-11.10.42-AM-150x150.png","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/Screen-Shot-2020-08-17-at-11.10.42-AM-150x150.png","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/Screen-Shot-2020-08-17-at-11.10.42-AM-150x150.png","caption":"Felipe Boh\u00f3rquez"},"description":"Felipe Boh\u00f3rquez is a Software Engineer and technical writer at Career Karma. He covers all things frontend and backend development.","url":"https:\/\/careerkarma.com\/blog\/author\/felipe-bohorquez\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23676","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\/86"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=23676"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23676\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/23108"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=23676"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=23676"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=23676"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}