{"id":24062,"date":"2020-10-12T17:24:35","date_gmt":"2020-10-13T00:24:35","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=24062"},"modified":"2023-12-01T04:01:29","modified_gmt":"2023-12-01T12:01:29","slug":"git-force-pull","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-force-pull\/","title":{"rendered":"Git: Force Pull"},"content":{"rendered":"\n<p>Git prevents you from pulling files to your local machine if any unsaved or untracked changes would be <a href=\"https:\/\/careerkarma.com\/blog\/git-commit-your-changes-or-stash-them-before-you-can-merge\/\">overwritten by the merge operation<\/a>. You can use the force pull method to force Git to pull the changes you want to receive on your local computer.<br><\/p>\n\n\n\n<p>In this guide, we discuss, with reference to an example, how to force pull the contents of a Git repository. We\u2019ll talk about the git pull and fetch commands, and how to use the reset option to force a pull.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is Pulling?<\/h2>\n\n\n\n<p>A <a href=\"https:\/\/careerkarma.com\/blog\/git-pull\/\">Git pull operation<\/a> downloads all the metadata and files from a remote repository and updates the local repository based on the data that has been retrieved.<br><\/p>\n\n\n\n<p>Pulling is the method used to bring your local files in line with the remote version of a repository. You\u2019ll have to pull a repository if you want to download the changes someone else has made to a remote repository. Pulling does not happen automatically.<br><\/p>\n\n\n\n<p>Pulling cannot occur when you have <a href=\"https:\/\/careerkarma.com\/blog\/git-nothing-added-to-commit-but-untracked-files-present\/\">untracked files<\/a> that would be overwritten. This means you have a file on your local branch that has not been added to the Git repository and would be replaced if the pull occured.<br><\/p>\n\n\n\n<p>You are unable to pull a repository if you have unsaved changes on your local machine that would be overwritten by the pull.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Git: Force Pull<\/h2>\n\n\n\n<p>We\u2019re working on a repository called ck-git, which contains the code for a web project. A collaborator has just updated a file called README.md. We have updated that file on our machine and have not pushed our changes to the repository.<br><\/p>\n\n\n\n<p>Let\u2019s see what happens when we try to pull our changes:<\/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>error: Your local changes to the following files would be overwritten by merge: README.md\nPlease, commit your changes or stash them before you can merge.<\/pre><\/div>\n\n\n\n<p>We have three options. We can commit our changes, stash them, or force Git to pull the changes anyway. These will overwrite our files.<br><\/p>\n\n\n\n<p>We can force Git to pull the changes by fetching any changes that have been made and then resetting our repository to show those changes. Let&#8217;s start by fetching the changes using the <a href=\"https:\/\/careerkarma.com\/blog\/git-fetch\/\">git fetch command<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git fetch --all<\/pre><\/div>\n\n\n\n<p>This command retrieves all of the metadata for the changes made to our remote repository. Next, we\u2019re going to back up our current branch. We do this to make sure we do not lose our work once our code is overwritten.<br><\/p>\n\n\n\n<p>We can back up our branch using the <a href=\"https:\/\/careerkarma.com\/blog\/git-branch\/\">git branch command<\/a>:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git branch backup<\/pre><\/div>\n\n\n\n<p>This command creates a new branch called \u201cbackup\u201d. Now that we have our backup branch in place, we can reset our repository to show the contents of our remote repository.<br><\/p>\n\n\n\n<p>We\u2019re going to use the <a href=\"https:\/\/careerkarma.com\/blog\/git-reset\/\">git reset command<\/a> to update our repository:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git reset --hard origin\/master<\/pre><\/div>\n\n\n\n<p>The &#8211;hard option downloads all the files from the remote repository and adds them to your local working copy of the project. This will overwrite any changes you have made.<br><\/p>\n\n\n\n<p>The origin\/master statement refers to the branch we are retrieving. We are downloading the contents of the \u201cmaster\u201d branch from our \u201corigin\u201d remote repository.<br><\/p>\n\n\n\n<p>If you are working with a repository that has a different branch or remote name, you can use this formula to guide how you use the reset command:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git reset --hard &lt;remote&gt;\/&lt;branch&gt;<\/pre><\/div>\n\n\n\n<p>The git reset command resets our repository to the most recent commit that we fetched.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Saving Uncommitted Changes<\/h2>\n\n\n\n<p>You can save the uncommitted changes that you have made using the git stash command. This command lets you \u201cstash\u201d your code away from later. Let\u2019s create a stash of our code:<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>All of the changes we have made to our repository will be saved in the stash. When we are ready to work with those changes again, we can \u201cpop\u201d our stash:<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 can read more about saving with git stash in our git stash tutorial.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>You can force a Git repository to pull contents from a remote repository. To do this, you need to fetch the contents of the repository. Once you have fetched the repository, you can reset your changes to the branch on your remote repository that you want your codebase to use.<br><\/p>\n\n\n\n<p>Now you have the knowledge you need to force a Git pull operation like a pro!<\/p>\n","protected":false},"excerpt":{"rendered":"Git prevents you from pulling files to your local machine if any unsaved or untracked changes would be overwritten by the merge operation. You can use the force pull method to force Git to pull the changes you want to receive on your local computer. In this guide, we discuss, with reference to an example,&hellip;","protected":false},"author":240,"featured_media":18674,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-24062","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: Force Pull: A Step-By-Step Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The git pull command downloads the contents of a remote Git repository to your local machine. On Career Karma, learn how to force a Git pull operation using the git fetch and git reset commands.\" \/>\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-force-pull\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git: Force Pull\" \/>\n<meta property=\"og:description\" content=\"The git pull command downloads the contents of a remote Git repository to your local machine. On Career Karma, learn how to force a Git pull operation using the git fetch and git reset commands.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-force-pull\/\" \/>\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-13T00:24:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:01:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/mark-s-TkEPQPWr2sY-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"679\" \/>\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-force-pull\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-force-pull\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git: Force Pull\",\"datePublished\":\"2020-10-13T00:24:35+00:00\",\"dateModified\":\"2023-12-01T12:01:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-force-pull\\\/\"},\"wordCount\":693,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-force-pull\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/mark-s-TkEPQPWr2sY-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-force-pull\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-force-pull\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-force-pull\\\/\",\"name\":\"Git: Force Pull: A Step-By-Step Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-force-pull\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-force-pull\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/mark-s-TkEPQPWr2sY-unsplash.jpg\",\"datePublished\":\"2020-10-13T00:24:35+00:00\",\"dateModified\":\"2023-12-01T12:01:29+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The git pull command downloads the contents of a remote Git repository to your local machine. On Career Karma, learn how to force a Git pull operation using the git fetch and git reset commands.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-force-pull\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-force-pull\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-force-pull\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/mark-s-TkEPQPWr2sY-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/mark-s-TkEPQPWr2sY-unsplash.jpg\",\"width\":1020,\"height\":679},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-force-pull\\\/#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: Force Pull\"}]},{\"@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: Force Pull: A Step-By-Step Guide | Career Karma","description":"The git pull command downloads the contents of a remote Git repository to your local machine. On Career Karma, learn how to force a Git pull operation using the git fetch and git reset commands.","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-force-pull\/","og_locale":"en_US","og_type":"article","og_title":"Git: Force Pull","og_description":"The git pull command downloads the contents of a remote Git repository to your local machine. On Career Karma, learn how to force a Git pull operation using the git fetch and git reset commands.","og_url":"https:\/\/careerkarma.com\/blog\/git-force-pull\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-10-13T00:24:35+00:00","article_modified_time":"2023-12-01T12:01:29+00:00","og_image":[{"width":1020,"height":679,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/mark-s-TkEPQPWr2sY-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-force-pull\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-force-pull\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git: Force Pull","datePublished":"2020-10-13T00:24:35+00:00","dateModified":"2023-12-01T12:01:29+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-force-pull\/"},"wordCount":693,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-force-pull\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/mark-s-TkEPQPWr2sY-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-force-pull\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-force-pull\/","url":"https:\/\/careerkarma.com\/blog\/git-force-pull\/","name":"Git: Force Pull: A Step-By-Step Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-force-pull\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-force-pull\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/mark-s-TkEPQPWr2sY-unsplash.jpg","datePublished":"2020-10-13T00:24:35+00:00","dateModified":"2023-12-01T12:01:29+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The git pull command downloads the contents of a remote Git repository to your local machine. On Career Karma, learn how to force a Git pull operation using the git fetch and git reset commands.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-force-pull\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-force-pull\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-force-pull\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/mark-s-TkEPQPWr2sY-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/mark-s-TkEPQPWr2sY-unsplash.jpg","width":1020,"height":679},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-force-pull\/#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: Force Pull"}]},{"@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\/24062","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=24062"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/24062\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/18674"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=24062"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=24062"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=24062"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}