{"id":23049,"date":"2020-09-21T13:54:51","date_gmt":"2020-09-21T20:54:51","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=23049"},"modified":"2023-12-01T04:00:21","modified_gmt":"2023-12-01T12:00:21","slug":"git-your-local-changes-would-be-overwritten-by-merge","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/","title":{"rendered":"Git Your local changes to the following files would be overwritten by merge Solution"},"content":{"rendered":"\n<p>You cannot <a href=\"https:\/\/careerkarma.com\/blog\/git-pull\/\">pull code from a remote repository<\/a> if there are any conflicts between uncommitted changes you have made on your local machine and the contents of the remote repository. This protects you from overwriting code you want to keep.<br><\/p>\n\n\n\n<p>In this guide, we discuss the \u201cYour local changes to the following files would be overwritten by merge\u201d error and why the error is raised. We\u2019ll also walk through an example so you can learn how to solve this error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Your local changes to the following files would be overwritten by merge<\/h2>\n\n\n\n<p>Your local version of a repository will often be different than that of a remote repository. This is a <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">core feature of Git<\/a>: you can make changes locally without pushing them to the remote repository until you are ready.<br><\/p>\n\n\n\n<p>When you pull code from a remote repository, Git will retrieve the contents of that repository and save them to your local machine. This can only happen if you have committed all of the changes to files that you want to save.<br><\/p>\n\n\n\n<p>If you try to pull code without first committing changes, you may see the \u201cYour local changes to the following files would be overwritten by merge\u201d error. This will only happen if you have modified a file that has also been changed in the remote version of the repository.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">An Example Scenario<\/h2>\n\n\n\n<p>Let\u2019s make a revision to a Git repository called ck-git. First, let\u2019s <a href=\"https:\/\/careerkarma.com\/blog\/git-clone\/\">clone a copy of this repository<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git clone https:\/\/github.com\/career-karma-tutorials\/ck-git<\/pre><\/div>\n\n\n\n<p>We now have a copy of the repository on our local machine. This repository contains one file: README.md. Its contents are:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre># ck-git<\/pre><\/div>\n\n\n\n<p>We are going to go to GitHub and modify this file on the server. Our file now contains the contents:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre># Career Karma Git<\/pre><\/div>\n\n\n\n<p>Our local version of the repository is now different from the origin master branch on the remote version of the repository.<br><\/p>\n\n\n\n<p>Our version contains the code that was in the remote repository when we pulled the code. The remote repository contains the change that we have made to README.md.<br><\/p>\n\n\n\n<p>Now, let\u2019s say that we change README.md on our local machine:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre># CK Git<\/pre><\/div>\n\n\n\n<p>We have changed our file. Now, let\u2019s try to pull the changes we made to our remote repository so that we can save them to our local machine:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git pull<\/pre><\/div>\n\n\n\n<p>This command returns an error:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>...\nUpdating a30b784..ec281fc\nerror: Your local changes to the following files would be overwritten by merge:\n    README.md\nPlease commit your changes or stash them before you merge.\nAborting<\/pre><\/div>\n\n\n\n<p>We have shortened the response of this command for brevity. The message we should focus on is \u201cYour local changes to the following files would be overwritten by merge\u201d.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solutions<\/h2>\n\n\n\n<p>There are now two copies of our file: the one on our local machine and the one in our remote repository. When we pull our code from our remote repository, Git is unsure what version of the file should remain.<br><\/p>\n\n\n\n<p>To solve this error, we can either stash our code or commit our code.<br><\/p>\n\n\n\n<p>To commit our code, we can add our README.md file to a commit and <a href=\"https:\/\/careerkarma.com\/blog\/git-commit\/\">create a commit<\/a> containing that file:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git add README.md\ngit commit -m &quot;docs: Update README.md&quot;<\/pre><\/div>\n\n\n\n<p>This will add the changes we made to README.md on our local machine to the commit history of our project. Git will now know that we want to keep these changes.<br><\/p>\n\n\n\n<p>The second solution is to stash our changes. This lets us save our changes for later viewing. We can stash our code using the <a href=\"https:\/\/careerkarma.com\/blog\/git-stash\/\">git stash command<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git stash<\/pre><\/div>\n\n\n\n<p>This command saves our change into a stash (our code is \u201cstashed away\u201d for later). Now that we\u2019ve stashed our code, we can safely pull the code from our remote repository:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git stash pop<\/pre><\/div>\n\n\n\n<p>The code in a Git stash can be viewed by running the git stash pop command. This will let us see the changes we\u2019ve made to our file that we did not commit to our repository. This means that if we decide we want to commit the changes to the file later, we can do so.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The \u201cYour local changes to the following files would be overwritten by merge\u201d error occurs when you try to pull a remote repository to your local machine whose contents conflict with the contents of your local version of the repository.<br><\/p>\n\n\n\n<p>To fix this error, either stash your changes away for later or commit your changes. Now you have the knowledge you need to fix this error like an expert!<\/p>\n","protected":false},"excerpt":{"rendered":"You cannot pull code from a remote repository if there are any conflicts between uncommitted changes you have made on your local machine and the contents of the remote repository. This protects you from overwriting code you want to keep. In this guide, we discuss the \u201cYour local changes to the following files would be&hellip;","protected":false},"author":240,"featured_media":18526,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-23049","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.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Your local changes to the following files will be overwritten<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn the cause of and the solution to the Git Your local changes to the following files would be overwritten by merge error.\" \/>\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-your-local-changes-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=\"Git Your local changes to the following files would be overwritten by merge Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn the cause of and the solution to the Git Your local changes to the following files would be overwritten by merge error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-your-local-changes-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-09-21T20:54:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:00:21+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/zan-0WzeC6JtbHU-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=\"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-your-local-changes-would-be-overwritten-by-merge\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git Your local changes to the following files would be overwritten by merge Solution\",\"datePublished\":\"2020-09-21T20:54:51+00:00\",\"dateModified\":\"2023-12-01T12:00:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/\"},\"wordCount\":723,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/zan-0WzeC6JtbHU-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/\",\"name\":\"Your local changes to the following files will be overwritten\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/zan-0WzeC6JtbHU-unsplash.jpg\",\"datePublished\":\"2020-09-21T20:54:51+00:00\",\"dateModified\":\"2023-12-01T12:00:21+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"On Career Karma, learn the cause of and the solution to the Git Your local changes to the following files would be overwritten by merge error.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/zan-0WzeC6JtbHU-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/zan-0WzeC6JtbHU-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-your-local-changes-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\":\"Git Your local changes to the following files would be overwritten by merge Solution\"}]},{\"@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\/#\/schema\/person\/image\/\",\"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":"Your local changes to the following files will be overwritten","description":"On Career Karma, learn the cause of and the solution to the Git Your local changes to the following files would be overwritten by merge error.","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-your-local-changes-would-be-overwritten-by-merge\/","og_locale":"en_US","og_type":"article","og_title":"Git Your local changes to the following files would be overwritten by merge Solution","og_description":"On Career Karma, learn the cause of and the solution to the Git Your local changes to the following files would be overwritten by merge error.","og_url":"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-21T20:54:51+00:00","article_modified_time":"2023-12-01T12:00:21+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/zan-0WzeC6JtbHU-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-your-local-changes-would-be-overwritten-by-merge\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git Your local changes to the following files would be overwritten by merge Solution","datePublished":"2020-09-21T20:54:51+00:00","dateModified":"2023-12-01T12:00:21+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/"},"wordCount":723,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/zan-0WzeC6JtbHU-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/","url":"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/","name":"Your local changes to the following files will be overwritten","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/zan-0WzeC6JtbHU-unsplash.jpg","datePublished":"2020-09-21T20:54:51+00:00","dateModified":"2023-12-01T12:00:21+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"On Career Karma, learn the cause of and the solution to the Git Your local changes to the following files would be overwritten by merge error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-your-local-changes-would-be-overwritten-by-merge\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/zan-0WzeC6JtbHU-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/zan-0WzeC6JtbHU-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-your-local-changes-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":"Git Your local changes to the following files would be overwritten by merge Solution"}]},{"@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\/#\/schema\/person\/image\/","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\/23049","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=23049"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/23049\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/18526"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=23049"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=23049"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=23049"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}