{"id":23464,"date":"2020-10-01T14:37:05","date_gmt":"2020-10-01T21:37:05","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=23464"},"modified":"2023-12-01T04:01:20","modified_gmt":"2023-12-01T12:01:20","slug":"git-head-detached-at","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/","title":{"rendered":"Git Detached HEAD Explanation"},"content":{"rendered":"\n<p>A detached HEAD occurs when you check out a commit that is not a branch. The term <code>detached HEAD<\/code> tells you that you are not viewing the HEAD of any repository. The HEAD is the most recent version of a branch. This is sometimes called the \u201ctip of a branch\u201d.<br><\/p>\n\n\n\n<p>In this guide, we discuss what a detached HEAD is and how they work. We\u2019ll walk through how to navigate into and out of a detached HEAD in Git.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is a Detached HEAD?<\/h2>\n\n\n\n<p>Git stores a record of the state of all the files in the repository when you <a href=\"https:\/\/careerkarma.com\/blog\/git-commit\/\">create a commit<\/a>. Because Git has such advanced version tracking features, you can go back to any point in time in your repository to view its contents.<br><\/p>\n\n\n\n<p>This is useful if you want to retrieve code you have overwritten in newer commits. You only need to check out the commit you want to view and then you can copy all the code you need from that commit. Being able to review past commits also lets you see how a repository or a particular file or set of files has evolved over time.<br><\/p>\n\n\n\n<p>When you use the <a href=\"https:\/\/careerkarma.com\/blog\/git-checkout\/\">git checkout command<\/a> to view a commit, you\u2019ll enter \u201cdetached HEAD state\u201d. This refers to when you are viewing a commit that is not the most recent commit in a repository.<br><\/p>\n\n\n\n<p>Detached HEAD state is not an error nor is it a problem. When you are ready, you can navigate back to the HEAD in your repository.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Enter Into a Detached HEAD<\/h2>\n\n\n\n<p>We have a repository called <code>ck-git<\/code>. We want to view the state of the <code>README.md<\/code> file three commits back in our repository.<br><\/p>\n\n\n\n<p>To do this, we can use the git checkout command:<br><\/p>\n\n\n\n<p><code>git checkout HEAD~3<br><\/code><\/p>\n\n\n\n<p>This command lets us see how our repository appeared three commits back. The ~3 tells Git we want to view our repository three commits relative to HEAD. HEAD is the most recent commit in a repository.<br><\/p>\n\n\n\n<p>Let\u2019s run the git checkout command:<br><\/p>\n\n\n\n<p>Note: checking out \u2018HEAD~3\u2019.<br><\/p>\n\n\n\n<p>You are in \u2018detached HEAD\u2019 state. You can look around, make experimental<\/p>\n\n\n\n<p>changes and commit them, and you can discard any commits you make in this<\/p>\n\n\n\n<p>state without impacting any branches by performing another checkout.<br><\/p>\n\n\n\n<p>Git informs us with the above error message we have entered into a detached HEAD state.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Save Changes to a Detached HEAD<\/h2>\n\n\n\n<p>Once you enter into <code>detached HEAD<\/code> state, you can view and modify the files in a particular commit. This is useful if you want to retrieve a change from a past commit that should be reincorporated into your repository.<br><\/p>\n\n\n\n<p>To save a change from a detached HEAD, you need to <a href=\"https:\/\/careerkarma.com\/blog\/git-branch\/\">create a new Git branch<\/a>:<br><\/p>\n\n\n\n<p><code>git branch dev<br><\/code><\/p>\n\n\n\n<p>This lets us create a branch called <code>dev<\/code>. <code>dev<\/code> will show our repository three commits back.<br><\/p>\n\n\n\n<p>Next, we need to merge our changes into the master branch. We can do this by navigating to the master branch and merging our two branches. We need to navigate to the <code>master<\/code> branch because we are currently viewing a previous commit in the <code>master<\/code> branch.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git checkout master\ngit merge dev\n<\/pre><\/div>\n\n\n\n<p>The first command will navigate our user to the master branch. The second command will start a <a href=\"https:\/\/careerkarma.com\/blog\/git-merge\/\">Git merge<\/a> between the <code>master<\/code> and the <code>dev<\/code> branch.<br><\/p>\n\n\n\n<p>Then, we can create a new Git commit with the changes we have collected from our previous ref HEADs. <code>ref HEADs<\/code> are previous references, or commits, in our repository.<br><\/p>\n\n\n\n<p>Alternatively, you can create a new branch using the git checkout -b command if you want to navigate to the <code>dev<\/code> branch.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Discard Changes in a Detached HEAD<\/h2>\n\n\n\n<p>You do not need to save the changes you make to a detached HEAD.<br><\/p>\n\n\n\n<p>Once you are done viewing a previous commit, you can go back to the HEAD of your repository. First, we need to discard the changes we made using the <a href=\"https:\/\/careerkarma.com\/blog\/git-reset\/\">Git reset command<\/a>:<br><\/p>\n\n\n\n<p><code>git reset --hard<br><\/code><\/p>\n\n\n\n<p>This command will make sure there are no conflicts when we want to move back to our master branch. Next, we can check out the HEAD of our master branch using the checkout command:<br><\/p>\n\n\n\n<p><code>git checkout master<br><\/code><\/p>\n\n\n\n<p>This will change your current HEAD to the tip of the master branch. None of the changes you made in the detached HEAD state will be reflected on your repository.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>A detached HEAD occurs when you are viewing a single commit in the history of a Git repository. You\u2019ll see a message whenever you enter into detached HEAD state informing you that you are no longer on a branch.<br><\/p>\n\n\n\n<p>Now you have the knowledge you need to use the Git detached HEAD state in your software development practices.<br><\/p>\n","protected":false},"excerpt":{"rendered":"A detached HEAD occurs when you check out a commit that is not a branch. The term detached HEAD tells you that you are not viewing the HEAD of any repository. The HEAD is the most recent version of a branch. This is sometimes called the \u201ctip of a branch\u201d. In this guide, we discuss&hellip;","protected":false},"author":240,"featured_media":22409,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-23464","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>Git Detached HEAD Explanation | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn about what a Git detached HEAD is, how to enter into a detached HEAD, and how to save and discard changes to a detached HEAD.\" \/>\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-head-detached-at\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git Detached HEAD Explanation\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn about what a Git detached HEAD is, how to enter into a detached HEAD, and how to save and discard changes to a detached HEAD.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/\" \/>\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-10-01T21:37:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:01:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/altumcode-rsQZm3wNu0I-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"768\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-head-detached-at\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-head-detached-at\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git Detached HEAD Explanation\",\"datePublished\":\"2020-10-01T21:37:05+00:00\",\"dateModified\":\"2023-12-01T12:01:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-head-detached-at\\\/\"},\"wordCount\":754,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-head-detached-at\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/altumcode-rsQZm3wNu0I-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-head-detached-at\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-head-detached-at\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-head-detached-at\\\/\",\"name\":\"Git Detached HEAD Explanation | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-head-detached-at\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-head-detached-at\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/altumcode-rsQZm3wNu0I-unsplash.jpg\",\"datePublished\":\"2020-10-01T21:37:05+00:00\",\"dateModified\":\"2023-12-01T12:01:20+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn about what a Git detached HEAD is, how to enter into a detached HEAD, and how to save and discard changes to a detached HEAD.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-head-detached-at\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-head-detached-at\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-head-detached-at\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/altumcode-rsQZm3wNu0I-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/altumcode-rsQZm3wNu0I-unsplash.jpg\",\"width\":960,\"height\":768},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-head-detached-at\\\/#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\":\"Git Detached HEAD Explanation\"}]},{\"@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":"Git Detached HEAD Explanation | Career Karma","description":"On Career Karma, learn about what a Git detached HEAD is, how to enter into a detached HEAD, and how to save and discard changes to a detached HEAD.","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-head-detached-at\/","og_locale":"en_US","og_type":"article","og_title":"Git Detached HEAD Explanation","og_description":"On Career Karma, learn about what a Git detached HEAD is, how to enter into a detached HEAD, and how to save and discard changes to a detached HEAD.","og_url":"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-10-01T21:37:05+00:00","article_modified_time":"2023-12-01T12:01:20+00:00","og_image":[{"width":960,"height":768,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/altumcode-rsQZm3wNu0I-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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git Detached HEAD Explanation","datePublished":"2020-10-01T21:37:05+00:00","dateModified":"2023-12-01T12:01:20+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/"},"wordCount":754,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/altumcode-rsQZm3wNu0I-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-head-detached-at\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/","url":"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/","name":"Git Detached HEAD Explanation | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/altumcode-rsQZm3wNu0I-unsplash.jpg","datePublished":"2020-10-01T21:37:05+00:00","dateModified":"2023-12-01T12:01:20+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn about what a Git detached HEAD is, how to enter into a detached HEAD, and how to save and discard changes to a detached HEAD.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-head-detached-at\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/altumcode-rsQZm3wNu0I-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/altumcode-rsQZm3wNu0I-unsplash.jpg","width":960,"height":768},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-head-detached-at\/#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":"Git Detached HEAD Explanation"}]},{"@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\/23464","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=23464"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23464\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/22409"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=23464"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=23464"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=23464"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}