{"id":19342,"date":"2020-12-15T03:01:35","date_gmt":"2020-12-15T11:01:35","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=19342"},"modified":"2023-12-01T04:05:56","modified_gmt":"2023-12-01T12:05:56","slug":"git-remove-remote","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-remove-remote\/","title":{"rendered":"Git Remove Remote: A Guide"},"content":{"rendered":"\n<p><em>The git remote remove command removes a remote URL from a repository. The syntax for this command is: git remote remove &lt;remote-url&gt;. You can only remove one remote at once.<\/em><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Remove a Git Remote<\/h2>\n\n\n\n<p>Have you set the wrong remote for a Git repository? Do you need to change your remote? Not to worry, Git has you covered. In Git, there\u2019s a command called <em>git remote remove<\/em> that you can use to remove a remote from a repository.<\/p>\n\n\n\n<p>This guide will cover everything you need to know about removing a git remote using git remote remove. We\u2019ll walk through an example to help you get started using this command.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is a Git Remote?<\/h2>\n\n\n\n<p>Git remote is a reference that points to the remote version of a Git repository.<\/p>\n\n\n\n<p>Remember, Git is a <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">distributed version control system<\/a>. This means that you can download a copy of a Git repository on your local machine and make changes. These changes do not affect the main copy of a repository \u2013 the remote copy \u2013 until you \u201cpush\u201d them to the remote repository.<\/p>\n\n\n\n<p>For the most part, you\u2019ll have one remote Git branch which is named <em>origin<\/em>. When you start a GitHub repository, for example, the instructions you\u2019ll be asked to set up a remote named origin. You can change it, but <em>origin<\/em> is the default value.<\/p>\n\n\n\n<p>With that said, you may need to change your remote at some point. That\u2019s where the <em>git remote remove<\/em> command comes in handy.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Git Remove Remote: A Guide<\/h2>\n\n\n\n<p>The git remote remove command removes a remote from a local repository. You can use the shorter git remote rm command too. The syntax for this command is: git remote rm &lt;remote-url&gt;.<\/p>\n\n\n\n<p>If you remove a remote accidentally, you will need to add it back manually using the git remote add command.<\/p>\n\n\n\n<p>The git remote rm command does not remove a remote from a remote repository. This is because remote repositories do not keep track of your local remotes. A remote is local to your computer.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to Remove Remote Origin in Git<\/h3>\n\n\n\n<p>Let\u2019s remove a Git remote from a repository! To start, move into your repository directory. Then execute the following command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git remote remove [name of the remote]<\/pre><\/div>\n\n\n\n<p>To delete the <em>origin<\/em> remote from your repository, use this command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git remote remove origin<\/pre><\/div>\n\n\n\n<p>Upon executing this command, the reference remotes <em>origin<\/em> will no longer point to the remote repository. It\u2019s worth noting this does not delete your remote repository or affect it in any way. All it means is that your local copy of a repository is no longer associated with a particular remote.<\/p>\n\n\n\n<p>Alternatively, you can use the <em>git remote rm<\/em> command. <em>git remote rm<\/em> is simply a shorter version of the <em>git remote remove<\/em> command.<\/p>\n\n\n\n<p>You can use the <em>git remove -v<\/em> command to verify if a remote has been removed. The -v flag shows the URLs to which each origin points. When you run this command, you\u2019ll see something like this:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>new    https:\/\/github.com\/career-karma-tutorials\/web-tutorials.git (fetch)\nnew    https:\/\/github.com\/career-karma-tutorials\/web-tutorials.git (push)<\/pre><\/div>\n\n\n\n<p>We can see our &#8220;origin&#8221; remote has been successfully removed. But, our &#8220;new&#8221; origin remains.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Git Update Remote URL<\/h2>\n\n\n\n<p>There\u2019s no need to remove a remote if you just need to update its URL. You can update a Git remote using the <em>git remote set-url<\/em> command.<\/p>\n\n\n\n<p>Let\u2019s say that you want to change the URL of a particular remote. We want to set the value of the <em>origin<\/em> pointer to:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>https:\/\/github.com\/career-karma-tutorials\/web-tutorials<\/pre><\/div>\n\n\n\n<p>We could do so by specifying the URL for the remote we want to use:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git remote set-url origin https:\/\/github.com\/career-karma-tutorials\/web-tutorials<\/pre><\/div>\n\n\n\n<p>This will modify our <em>origin<\/em> pointer to refer to the new URL we have specified. We can check if this change has been made by using the <em>git remote -v<\/em> command like we did earlier.<\/p>\n\n\n\n<p>To learn more about changing remotes, check out our <a href=\"https:\/\/careerkarma.com\/blog\/git-change-remote\/\">How to Change a Git Remote guide<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The <em>git remove remote<\/em> command allows you to remove a pointer to a remote repository from the Git command line. You can use the <em>git remote set-url<\/em> command to change the value of a remote if you only need to amend its URL.<\/p>\n\n\n\n<p>Now you\u2019re ready to start removing and updating remotes like an expert developer!<\/p>\n\n\n\n<p>Do you want to learn more about Git? Check out our complete <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">How to Learn Git guide<\/a> for expert tips and guidance on top online learning resources.<\/p>\n","protected":false},"excerpt":{"rendered":"The git remote remove command removes a remote URL from a repository. The syntax for this command is: git remote remove &lt;remote-url&gt;. You can only remove one remote at once. How to Remove a Git Remote Have you set the wrong remote for a Git repository? Do you need to change your remote? Not to&hellip;","protected":false},"author":240,"featured_media":19343,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-19342","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 Remove Remote: A Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"The git remote remove command allows you to remove a remote repository using Git. On Career Karma, learn how to use this command.\" \/>\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-remove-remote\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git Remove Remote: A Guide\" \/>\n<meta property=\"og:description\" content=\"The git remote remove command allows you to remove a remote repository using Git. On Career Karma, learn how to use this command.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-remove-remote\/\" \/>\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-12-15T11:01:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:05:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-winkler-ZDwh_sxsX2g-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-remove-remote\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-remove-remote\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git Remove Remote: A Guide\",\"datePublished\":\"2020-12-15T11:01:35+00:00\",\"dateModified\":\"2023-12-01T12:05:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-remove-remote\\\/\"},\"wordCount\":727,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-remove-remote\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/markus-winkler-ZDwh_sxsX2g-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-remove-remote\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-remove-remote\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-remove-remote\\\/\",\"name\":\"Git Remove Remote: A Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-remove-remote\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-remove-remote\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/markus-winkler-ZDwh_sxsX2g-unsplash.jpg\",\"datePublished\":\"2020-12-15T11:01:35+00:00\",\"dateModified\":\"2023-12-01T12:05:56+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The git remote remove command allows you to remove a remote repository using Git. On Career Karma, learn how to use this command.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-remove-remote\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-remove-remote\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-remove-remote\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/markus-winkler-ZDwh_sxsX2g-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/markus-winkler-ZDwh_sxsX2g-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-remove-remote\\\/#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 Remove Remote: A Guide\"}]},{\"@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 Remove Remote: A Guide | Career Karma","description":"The git remote remove command allows you to remove a remote repository using Git. On Career Karma, learn how to use this command.","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-remove-remote\/","og_locale":"en_US","og_type":"article","og_title":"Git Remove Remote: A Guide","og_description":"The git remote remove command allows you to remove a remote repository using Git. On Career Karma, learn how to use this command.","og_url":"https:\/\/careerkarma.com\/blog\/git-remove-remote\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-12-15T11:01:35+00:00","article_modified_time":"2023-12-01T12:05:56+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-winkler-ZDwh_sxsX2g-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-remove-remote\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-remove-remote\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git Remove Remote: A Guide","datePublished":"2020-12-15T11:01:35+00:00","dateModified":"2023-12-01T12:05:56+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-remove-remote\/"},"wordCount":727,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-remove-remote\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-winkler-ZDwh_sxsX2g-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-remove-remote\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-remove-remote\/","url":"https:\/\/careerkarma.com\/blog\/git-remove-remote\/","name":"Git Remove Remote: A Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-remove-remote\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-remove-remote\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-winkler-ZDwh_sxsX2g-unsplash.jpg","datePublished":"2020-12-15T11:01:35+00:00","dateModified":"2023-12-01T12:05:56+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The git remote remove command allows you to remove a remote repository using Git. On Career Karma, learn how to use this command.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-remove-remote\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-remove-remote\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-remove-remote\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-winkler-ZDwh_sxsX2g-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-winkler-ZDwh_sxsX2g-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-remove-remote\/#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 Remove Remote: A Guide"}]},{"@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\/19342","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=19342"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19342\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/19343"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=19342"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=19342"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=19342"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}