{"id":22718,"date":"2020-09-16T11:33:52","date_gmt":"2020-09-16T18:33:52","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=22718"},"modified":"2023-12-01T04:00:06","modified_gmt":"2023-12-01T12:00:06","slug":"git-commit-your-changes-or-stash-them-before-you-can-merge","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/","title":{"rendered":"Git commit your changes or stash them before you can merge Solution"},"content":{"rendered":"\n<p>If you have made changes to the same file in both your local copy of a Git repository and a remote repository, you\u2019ll encounter the \u201ccommit your changes or stash them before you can merge\u201d Git error.<br><\/p>\n\n\n\n<p>In this guide, we discuss what this error means and why it may be raised. We discuss the three ways in which you can solve this error.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">commit your changes or stash them before you can merge<\/h2>\n\n\n\n<p>Because <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">Git is distributed<\/a>, you can maintain multiple copies of a repository. This means you can have one version of a repository on one computer, another version on another computer, and one central version to which every copy refers.<br><\/p>\n\n\n\n<p>It is possible for the remote (central) version of a repository to change before you push a change to a repository. If someone changes the central version of a repository, you need to pull a local copy so you can work with the most up-to-date version of the codebase.<br><\/p>\n\n\n\n<p>If the updated version of the repository contains a change to a file that conflicts with a change you have made on your local machine, you\u2019ll see an error. This is because Git is unsure whether the remote version or the local version of the change should be kept.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Solution<\/h2>\n\n\n\n<p>This error is designed as a safeguard. Before you can push your code, Git forces you to think about which version of a file you want to keep: the local one, or the one in the remote version of the repository.<br><\/p>\n\n\n\n<p>There are three ways you can solve this error:<br><\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>Commit a changed file<\/li><li>Discard your changes<\/li><li>Stash your changes<\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Solution #1: Commit a Changed File<\/h2>\n\n\n\n<p>You want to commit the changed file if your local copy of the file is the one you want to keep in the repository. This will add your file to the Git commit record and make it part of the history of the project.<br><\/p>\n\n\n\n<p>To commit the changed file, <a href=\"https:\/\/careerkarma.com\/blog\/git-add\/\">add the modified file to the staging area<\/a> (if necessary) and <a href=\"https:\/\/careerkarma.com\/blog\/git-commit\/\">create a commit<\/a> with that change:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git add filename.md\ngit commit -m &quot;feat: A change has been made&quot;<\/pre><\/div>\n\n\n\n<p>When you push your commit to the remote version of the repository, your change will be reflected in the codebase.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Solution #2: Discard Your Changes<\/h2>\n\n\n\n<p>Often, the changes made to a remote repository remain in place. If you want to discard your changes, you can either checkout the remote version of a file, or reset your repository to the last commit so you can accept the changes that have been made.<br><\/p>\n\n\n\n<p>To discard an individual file, use the <a href=\"https:\/\/careerkarma.com\/blog\/git-checkout\/\">git checkout command<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git checkout filename.md<\/pre><\/div>\n\n\n\n<p>You can reset your repository to the last commit using the <a href=\"https:\/\/careerkarma.com\/blog\/git-reset\/\"><a href=\"https:\/\/careerkarma.com\/blog\/git-reset\/\">git reset<\/a><\/a><a href=\"https:\/\/careerkarma.com\/blog\/git-reset\/\"> command<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git reset --hard<\/pre><\/div>\n\n\n\n<p>The &#8211;hard flag tells your computer you want to make a change to the HEAD, index, and working directory. This means the files on your local machine will be changed to reflect the current state of the remote repository.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Solution #3: Stash Your Changes<\/h2>\n\n\n\n<p>Stashing lets you keep track of the changes you have made to which you can refer in the future. It is helpful if you want to retrieve a remote copy of a repository but where you also want to save a record of your changes.<br><\/p>\n\n\n\n<p>The changes you stash are not uploaded to the remote repository. You need to create a separate commit to add them to the repository.<br><\/p>\n\n\n\n<p>To stash your changes, use 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>Now that you have a saved version of your changes, you can merge your code into the main version of your repository, or discard your changes. Once you have done either of these tasks, you can retrieve the code from your stash using the pop keyword:<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>You may run into the same error again if the remote version of a repository changes again. This is more of a temporary solution until you decide whether to commit a file to the main line of development or discard it.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The \u201ccommit your changes or stash them before you can merge\u201d error is raised when you try to pull code from a remote repository that conflicts with a local change you have made to a repository.<br><\/p>\n\n\n\n<p>To solve this error, either commit your change to the repository, discard your change, or stash your change for later. Now you have the knowledge you need to fix this error like a professional developer!<\/p>\n","protected":false},"excerpt":{"rendered":"If you have made changes to the same file in both your local copy of a Git repository and a remote repository, you\u2019ll encounter the \u201ccommit your changes or stash them before you can merge\u201d Git error. In this guide, we discuss what this error means and why it may be raised. We discuss the&hellip;","protected":false},"author":240,"featured_media":22719,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-22718","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 commit your changes or stash before you can merge | Career Karma<\/title>\n<meta name=\"description\" content=\"On Career Karma, learn the cause of and the solution to the Git commit your changes or stash them before you can 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-commit-your-changes-or-stash-them-before-you-can-merge\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git commit your changes or stash them before you can merge Solution\" \/>\n<meta property=\"og:description\" content=\"On Career Karma, learn the cause of and the solution to the Git commit your changes or stash them before you can merge error.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-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-16T18:33:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:00:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/alvaro-reyes-fSWOVc3e06w-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-commit-your-changes-or-stash-them-before-you-can-merge\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-your-changes-or-stash-them-before-you-can-merge\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git commit your changes or stash them before you can merge Solution\",\"datePublished\":\"2020-09-16T18:33:52+00:00\",\"dateModified\":\"2023-12-01T12:00:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-your-changes-or-stash-them-before-you-can-merge\\\/\"},\"wordCount\":732,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-your-changes-or-stash-them-before-you-can-merge\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/alvaro-reyes-fSWOVc3e06w-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-your-changes-or-stash-them-before-you-can-merge\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-your-changes-or-stash-them-before-you-can-merge\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-your-changes-or-stash-them-before-you-can-merge\\\/\",\"name\":\"Git commit your changes or stash before you can merge | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-your-changes-or-stash-them-before-you-can-merge\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-your-changes-or-stash-them-before-you-can-merge\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/alvaro-reyes-fSWOVc3e06w-unsplash.jpg\",\"datePublished\":\"2020-09-16T18:33:52+00:00\",\"dateModified\":\"2023-12-01T12:00:06+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 commit your changes or stash them before you can merge error.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-your-changes-or-stash-them-before-you-can-merge\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-your-changes-or-stash-them-before-you-can-merge\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-your-changes-or-stash-them-before-you-can-merge\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/alvaro-reyes-fSWOVc3e06w-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/09\\\/alvaro-reyes-fSWOVc3e06w-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-commit-your-changes-or-stash-them-before-you-can-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 commit your changes or stash them before you can 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\\\/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 commit your changes or stash before you can merge | Career Karma","description":"On Career Karma, learn the cause of and the solution to the Git commit your changes or stash them before you can 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-commit-your-changes-or-stash-them-before-you-can-merge\/","og_locale":"en_US","og_type":"article","og_title":"Git commit your changes or stash them before you can merge Solution","og_description":"On Career Karma, learn the cause of and the solution to the Git commit your changes or stash them before you can merge error.","og_url":"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-16T18:33:52+00:00","article_modified_time":"2023-12-01T12:00:06+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/alvaro-reyes-fSWOVc3e06w-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-commit-your-changes-or-stash-them-before-you-can-merge\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git commit your changes or stash them before you can merge Solution","datePublished":"2020-09-16T18:33:52+00:00","dateModified":"2023-12-01T12:00:06+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/"},"wordCount":732,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/alvaro-reyes-fSWOVc3e06w-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/","url":"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/","name":"Git commit your changes or stash before you can merge | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/alvaro-reyes-fSWOVc3e06w-unsplash.jpg","datePublished":"2020-09-16T18:33:52+00:00","dateModified":"2023-12-01T12:00:06+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 commit your changes or stash them before you can merge error.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/alvaro-reyes-fSWOVc3e06w-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/09\/alvaro-reyes-fSWOVc3e06w-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-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 commit your changes or stash them before you can 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\/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\/22718","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=22718"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22718\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/22719"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=22718"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=22718"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=22718"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}