{"id":24771,"date":"2020-10-26T09:59:28","date_gmt":"2020-10-26T16:59:28","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=24771"},"modified":"2020-11-10T07:58:01","modified_gmt":"2020-11-10T15:58:01","slug":"error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/","title":{"rendered":"Error: the Following Untracked Working Tree Files Would Be Overwritten by Merge"},"content":{"rendered":"\n<p>The error above is often triggered when we do not clone the repository we are trying to pull from. The projects may be identical, but we may be working on one locally while trying to pull it from the repo on Github because it may have other files or features we\u2019d like to incorporate on our local version.<br><\/p>\n\n\n\n<p>There are several ways to fix this.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Tell the Local Branch to Track the Remote Branch<\/h2>\n\n\n\n<p>We can do this by using the command below.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git branch --track &lt;branch-name&gt; origin\/&lt;branch-name&gt;<\/pre><\/div>\n\n\n\n<p>By doing this, the remote branch becomes a counterpart to the remote server. After this, do a git status to see the difference between the two repos.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Staging and Stashing&nbsp;<\/h2>\n\n\n\n<p>To pull so local files are not overwritten from version control, we can also stage and then stash by using the commands below.<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git add -A \ngit stash\ngit pull<\/pre><\/div>\n\n\n\n<p>With git add -A, we are staging all changes. It is the same as git add in that it looks at all&nbsp;<\/p>\n\n\n\n<p>working trees and adds all working paths to stages changes, changed, new, or not ignored. In addition to this, it also acts like git add -u in that it looks at the files already being tracked, and stages the changes to those files if they have been removed or if they differ.<br><\/p>\n\n\n\n<p>With git stash we are taking staged and unstaged uncommitted changes, stashing them away for future use, then reverting them from a working copy. After this, we are free to make changes like pulling new files.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Fetching and Resetting&nbsp;<\/h2>\n\n\n\n<p>If neither of the above has worked for you yet, try fetching and resetting. Because we will be using &#8211;hard on this option, it is important to at least attempt the two above as &#8211;hard is a potentially dangerous command which throws away all uncommitted changes.<br><\/p>\n\n\n\n<p>Please do a git status before attempting the fix below to make sure your output is empty.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git fetch --all\ngit reset --hard origin\/&lt;branch-name&gt;<\/pre><\/div>\n\n\n\n<p>With git fetch &#8211;all, we can fetch all remote branches. Fetch will update local copies of remote branches, but will not update local branches that track remote branches. To achieve this, we need to do a git pull &#8211;all.&nbsp;<br><\/p>\n\n\n\n<p>With git reset &#8211;hard origin\/&lt;branch-name&gt;, we are essentially saying \u201cthrow everything away that is in my local branch, and make it the same as my remote branch\u201d. It throws away all staged and unstaged changes. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The error: the following untracked working tree files would be overwritten by merge is triggered when we are trying to pull a remote branch while on a local one. The projects may be identical, but the local one needs to be able to track the remote for it to pull successfully.&nbsp;<br><\/p>\n\n\n\n<p>This error is often triggered when the developer forgets to clone a repo. Other ways to fix this error is by staging and stashing or fetching and resetting, which should be attempted only if the first two methods were not successful.<\/p>\n","protected":false},"excerpt":{"rendered":"The error above is often triggered when we do not clone the repository we are trying to pull from. The projects may be identical, but we may be working on one locally while trying to pull it from the repo on Github because it may have other files or features we\u2019d like to incorporate on&hellip;","protected":false},"author":91,"featured_media":2533,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-24771","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>Working Tree Files Would Be Overwritten by Merge | Career Karma<\/title>\n<meta name=\"description\" content=\"This error is often triggered when we do not clone the repository we are trying to pull from. Learn how to fix it with this article by Career Karma.\" \/>\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\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Error: the Following Untracked Working Tree Files Would Be Overwritten by Merge\" \/>\n<meta property=\"og:description\" content=\"This error is often triggered when we do not clone the repository we are trying to pull from. Learn how to fix it with this article by Career Karma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/\" \/>\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-26T16:59:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-11-10T15:58:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/code-coding-data-574071.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"795\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Kelly M.\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/misskellymore\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kelly M.\" \/>\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:\\\/\\\/careerkarma.com\\\/blog\\\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\\\/\"},\"author\":{\"name\":\"Kelly M.\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/1cc6a89c78a56b632b6032b3b040c4fb\"},\"headline\":\"Error: the Following Untracked Working Tree Files Would Be Overwritten by Merge\",\"datePublished\":\"2020-10-26T16:59:28+00:00\",\"dateModified\":\"2020-11-10T15:58:01+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\\\/\"},\"wordCount\":500,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/code-coding-data-574071.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\\\/\",\"name\":\"Working Tree Files Would Be Overwritten by Merge | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/code-coding-data-574071.jpg\",\"datePublished\":\"2020-10-26T16:59:28+00:00\",\"dateModified\":\"2020-11-10T15:58:01+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/1cc6a89c78a56b632b6032b3b040c4fb\"},\"description\":\"This error is often triggered when we do not clone the repository we are trying to pull from. Learn how to fix it with this article by Career Karma.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/code-coding-data-574071.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/code-coding-data-574071.jpg\",\"width\":1200,\"height\":795},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\\\/#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\":\"Error: the Following Untracked Working Tree Files Would Be Overwritten by Merge\"}]},{\"@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\\\/1cc6a89c78a56b632b6032b3b040c4fb\",\"name\":\"Kelly M.\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/kelly-moreira-150x150.jpeg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/kelly-moreira-150x150.jpeg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/11\\\/kelly-moreira-150x150.jpeg\",\"caption\":\"Kelly M.\"},\"description\":\"Kelly is a technical writer at Career Karma, where she writes tutorials on a variety of topics. She attended the University of Central Florida, earning a BS in Business Administration. Shortly after, she attended Lambda School, specializing in full stack web development and computer science. Before joining Career Karma in September 2020, Kelly worked as a Developer Advocate at Dwolla and as a team lead at Lambda School. Her technical writing can be found on Codecademy, gitConnected, and JavaScript in Plain English.\",\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/in\\\/kemore\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/misskellymore\"],\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/kelly-m\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Working Tree Files Would Be Overwritten by Merge | Career Karma","description":"This error is often triggered when we do not clone the repository we are trying to pull from. Learn how to fix it with this article by Career Karma.","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\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/","og_locale":"en_US","og_type":"article","og_title":"Error: the Following Untracked Working Tree Files Would Be Overwritten by Merge","og_description":"This error is often triggered when we do not clone the repository we are trying to pull from. Learn how to fix it with this article by Career Karma.","og_url":"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-10-26T16:59:28+00:00","article_modified_time":"2020-11-10T15:58:01+00:00","og_image":[{"width":1200,"height":795,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/code-coding-data-574071.jpg","type":"image\/jpeg"}],"author":"Kelly M.","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/misskellymore","twitter_site":"@career_karma","twitter_misc":{"Written by":"Kelly M.","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/"},"author":{"name":"Kelly M.","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb"},"headline":"Error: the Following Untracked Working Tree Files Would Be Overwritten by Merge","datePublished":"2020-10-26T16:59:28+00:00","dateModified":"2020-11-10T15:58:01+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/"},"wordCount":500,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/code-coding-data-574071.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/","url":"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/","name":"Working Tree Files Would Be Overwritten by Merge | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/code-coding-data-574071.jpg","datePublished":"2020-10-26T16:59:28+00:00","dateModified":"2020-11-10T15:58:01+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1cc6a89c78a56b632b6032b3b040c4fb"},"description":"This error is often triggered when we do not clone the repository we are trying to pull from. Learn how to fix it with this article by Career Karma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/code-coding-data-574071.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/code-coding-data-574071.jpg","width":1200,"height":795},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/error-the-following-untracked-working-tree-files-would-be-overwritten-by-merge\/#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":"Error: the Following Untracked Working Tree Files Would Be Overwritten by Merge"}]},{"@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\/1cc6a89c78a56b632b6032b3b040c4fb","name":"Kelly M.","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/11\/kelly-moreira-150x150.jpeg","caption":"Kelly M."},"description":"Kelly is a technical writer at Career Karma, where she writes tutorials on a variety of topics. She attended the University of Central Florida, earning a BS in Business Administration. Shortly after, she attended Lambda School, specializing in full stack web development and computer science. Before joining Career Karma in September 2020, Kelly worked as a Developer Advocate at Dwolla and as a team lead at Lambda School. Her technical writing can be found on Codecademy, gitConnected, and JavaScript in Plain English.","sameAs":["https:\/\/www.linkedin.com\/in\/kemore\/","https:\/\/x.com\/https:\/\/twitter.com\/misskellymore"],"url":"https:\/\/careerkarma.com\/blog\/author\/kelly-m\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/24771","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\/91"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=24771"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/24771\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/2533"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=24771"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=24771"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=24771"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}