{"id":20263,"date":"2020-11-23T06:49:31","date_gmt":"2020-11-23T14:49:31","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=20263"},"modified":"2023-12-01T04:04:51","modified_gmt":"2023-12-01T12:04:51","slug":"git-change-remote","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-change-remote\/","title":{"rendered":"How to Change a Git Remote"},"content":{"rendered":"\n<p><em>You can change a Git remote URL using the git remote set-url command. Navigate to the repository whose remote URL you want to change and then execute this command. The set-url command accepts two arguments: the remote name and the new repository URL.<\/em><\/p>\n\n\n\n<p>Have you changed the name of a remote <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">Git<\/a> repository? Are you moving a remote repository to another location? Both of these operations will change the URL of a Git repository. This will cause any references to your remote repository to break.<br><\/p>\n\n\n\n<p>Do not worry! The git remote set-url command is here to the rescue. This command allows you to change the URL of a remote repository.<br><\/p>\n\n\n\n<p>In this guide, we\u2019re going to talk about what git remotes are and how you can change a git remote. We\u2019ll walk through an example to help you get started.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is a Git Remote?<\/h2>\n\n\n\n<p>A Git <a href=\"https:\/\/careerkarma.com\/blog\/git-remove-remote\/\">remote<\/a> is a pointer that links your local version of a repository to a remote repository.<br><\/p>\n\n\n\n<p>Git is a distributed version control system. This means that multiple developers can keep their own copies of a project on their own machines. The changes that you make to a repository will only be accessible by other developers when you push them to a remote server.<br><\/p>\n\n\n\n<p>A Git repository can have multiple remotes linked to it. Most repositories only have one remote. Repositories with more than one remote are usually linked to different development environments such as testing, staging, or production.<br><\/p>\n\n\n\n<p>When you change the name of a repository or move it to another hosting platform, you\u2019ll need to update your remote URLs.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Change a Git Remote<\/h2>\n\n\n\n<p>The git remote set-url command changes the Git remote associated with a repository. This command accepts the name of the remote (which is usually &#8220;origin&#8221;) and the new remote URL to which you want the repository to point.<\/p>\n\n\n\n<p>Let\u2019s start by navigating into a repository:<br><\/p>\n\n\n\n<p><code>cd Projects\/git-submodule-tutorial&nbsp;<br><\/code><\/p>\n\n\n\n<p>Now that we\u2019re in a Git repository, we can start changing its remotes. We\u2019re going to check our existing remotes to see what has been set using git remote -v:<br><\/p>\n\n\n\n<p><code>git remote -v&nbsp;<br><\/code><\/p>\n\n\n\n<p>This command returns:<br><\/p>\n\n\n\n<p>origin&nbsp; &nbsp; https:\/\/github.com\/Career-Karma-Tutorials\/git-submodule-tutorial (fetch)<\/p>\n\n\n\n<p>origin&nbsp; &nbsp; https:\/\/github.com\/Career-Karma-Tutorials\/git-submodule-tutorial&nbsp; (push)<br><\/p>\n\n\n\n<p>We have one remote called \u201corigin\u201d. This remote is used to both <a href=\"https:\/\/careerkarma.com\/blog\/git-fetch\/\">fetch<\/a> code from and <a href=\"https:\/\/careerkarma.com\/blog\/git-push\/\">push<\/a> code to a remote repository. You should see a similar output when you run this command unless you have multiple remotes set for a project.<br><\/p>\n\n\n\n<p>We\u2019re going to change the remote of this repository to git-submodule. This is because we have renamed our repository on Github. You can change a remote using the git remote set-url command:<br><\/p>\n\n\n\n<p><code>git remote set-url origin https:\/\/github.com\/Career-Karma-Tutorials\/git-submodule<br><\/code><\/p>\n\n\n\n<p>\u201corigin\u201d refers to the name of the remote whose URL we want to change. The URL we have specified is the new URL for the project.<br><\/p>\n\n\n\n<p>You can specify either a HTTP or SSH URL as a remote. For instance, we could change our link to an SSH URL like this:<br><\/p>\n\n\n\n<p><code>git remote set-url origin git@github.com:Career-Karma-Tutorials\/git-submodule.git<br><\/code><\/p>\n\n\n\n<p>This will point the \u201corigin\u201d remote to an SSH URL.<br><\/p>\n\n\n\n<p>We can verify the new remote URL using the git remote -v command:<br><\/p>\n\n\n\n<p><code>git remote -v origin<br><\/code><\/p>\n\n\n\n<p>Our remotes have been changed:<br><\/p>\n\n\n\n<p>origin&nbsp; &nbsp; git@github.com:Career-Karma-Tutorials\/git-submodule.git (fetch)<\/p>\n\n\n\n<p>origin&nbsp; &nbsp; git@github.com:Career-Karma-Tutorials\/git-submodule.git&nbsp; (push)<br><\/p>\n\n\n\n<p>We\u2019ve done it!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Change a Remote Manually<\/h2>\n\n\n\n<p>You can change a remote manually by modifying a Git repository\u2019s config file inside your working directory. This approach is practical if you are going to make multiple changes to the <a href=\"https:\/\/careerkarma.com\/blog\/git-config\/\">configuration of a Git repository<\/a>.<br><\/p>\n\n\n\n<p>Open up the file .git\/config in your Git repository. Then, scroll down until you reach the [remote \u201corigin\u201d] line:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>[remote &quot;origin&quot;]\n\turl = git@github.com:Career-Karma-Tutorials\/git-submodule.git\n\tfetch = +refs\/heads\/*:refs\/remotes\/origin\/*\n<\/pre><\/div>\n\n\n\n<p>We can change this code to modify the \u201corigin\u201d remote. Once you have made any changes you need to make, you can save the file.&nbsp;<br><\/p>\n\n\n\n<p>It is best to change a remote using the Git command. This is because there\u2019s a higher risk that you make a mistake in your configuration file if you alter it manually.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">fatal: No such remote \u2018[name]\u2019<\/h2>\n\n\n\n<p>You may encounter an error <code>fatal: No such remote \u2018[name]\u2019<\/code> when you try to change the remote of a repository:<br><\/p>\n\n\n\n<p><code>fatal: No such remote \u2018[name]\u2019<br><\/code><\/p>\n\n\n\n<p>This error occurs when you try to change the URL of a remote that does not exist. To solve this error, make sure you have correctly typed in the name of the remote whose URL you want to change.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>You can change a Git repository&#8217;s remote URL using the git remote set-url command. You can also modify a remote URL by modifying the .git\/config file in a repository.<br><\/p>\n\n\n\n<p>Now you\u2019re ready to start changing remotes using Git like an expert!<\/p>\n\n\n\n<p>To learn more about Git, read our complete <a href=\"https:\/\/careerkarma.com\/blog\/what-is-git\/\">How to Learn Git guide<\/a>.<br><\/p>\n","protected":false},"excerpt":{"rendered":"You can change a Git remote URL using the git remote set-url command. Navigate to the repository whose remote URL you want to change and then execute this command. The set-url command accepts two arguments: the remote name and the new repository URL. Have you changed the name of a remote Git repository? Are you&hellip;","protected":false},"author":240,"featured_media":20264,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-20263","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>How to Change a Git Remote: A Step-By-Step Guide| Career Karma<\/title>\n<meta name=\"description\" content=\"The git remote set-url command allows you to change a Git remote URL. On Career Karma, learn how to use the git change remote 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-change-remote\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Change a Git Remote\" \/>\n<meta property=\"og:description\" content=\"The git remote set-url command allows you to change a Git remote URL. On Career Karma, learn how to use the git change remote command.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-change-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-11-23T14:49:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:04:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-ws6CJRzdOg8-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"668\" \/>\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-change-remote\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-change-remote\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"How to Change a Git Remote\",\"datePublished\":\"2020-11-23T14:49:31+00:00\",\"dateModified\":\"2023-12-01T12:04:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-change-remote\/\"},\"wordCount\":798,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-change-remote\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-ws6CJRzdOg8-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/git-change-remote\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-change-remote\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/git-change-remote\/\",\"name\":\"How to Change a Git Remote: A Step-By-Step Guide| Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-change-remote\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-change-remote\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-ws6CJRzdOg8-unsplash.jpg\",\"datePublished\":\"2020-11-23T14:49:31+00:00\",\"dateModified\":\"2023-12-01T12:04:51+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The git remote set-url command allows you to change a Git remote URL. On Career Karma, learn how to use the git change remote command.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/git-change-remote\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/git-change-remote\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-change-remote\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-ws6CJRzdOg8-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-ws6CJRzdOg8-unsplash.jpg\",\"width\":1000,\"height\":668,\"caption\":\"Woman in teal blazer sitting at end of meeting table listening to another woman speak\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/git-change-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\":\"How to Change a Git Remote\"}]},{\"@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":"How to Change a Git Remote: A Step-By-Step Guide| Career Karma","description":"The git remote set-url command allows you to change a Git remote URL. On Career Karma, learn how to use the git change remote 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-change-remote\/","og_locale":"en_US","og_type":"article","og_title":"How to Change a Git Remote","og_description":"The git remote set-url command allows you to change a Git remote URL. On Career Karma, learn how to use the git change remote command.","og_url":"https:\/\/careerkarma.com\/blog\/git-change-remote\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-11-23T14:49:31+00:00","article_modified_time":"2023-12-01T12:04:51+00:00","og_image":[{"width":1000,"height":668,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-ws6CJRzdOg8-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-change-remote\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-change-remote\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"How to Change a Git Remote","datePublished":"2020-11-23T14:49:31+00:00","dateModified":"2023-12-01T12:04:51+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-change-remote\/"},"wordCount":798,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-change-remote\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-ws6CJRzdOg8-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-change-remote\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-change-remote\/","url":"https:\/\/careerkarma.com\/blog\/git-change-remote\/","name":"How to Change a Git Remote: A Step-By-Step Guide| Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-change-remote\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-change-remote\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-ws6CJRzdOg8-unsplash.jpg","datePublished":"2020-11-23T14:49:31+00:00","dateModified":"2023-12-01T12:04:51+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The git remote set-url command allows you to change a Git remote URL. On Career Karma, learn how to use the git change remote command.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-change-remote\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-change-remote\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-change-remote\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-ws6CJRzdOg8-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/christina-wocintechchat-com-ws6CJRzdOg8-unsplash.jpg","width":1000,"height":668,"caption":"Woman in teal blazer sitting at end of meeting table listening to another woman speak"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-change-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":"How to Change a Git Remote"}]},{"@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\/20263","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=20263"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/20263\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/20264"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=20263"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=20263"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=20263"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}