{"id":17624,"date":"2020-10-21T02:05:57","date_gmt":"2020-10-21T09:05:57","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=17624"},"modified":"2023-12-01T04:03:16","modified_gmt":"2023-12-01T12:03:16","slug":"git-delete-branch","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/git-delete-branch\/","title":{"rendered":"Git Delete Branch"},"content":{"rendered":"\n<p><em>Deleting Git branches is common practice after you have merged a branch into your codebase. You can delete a Git branch on your local machine using the git branch -d flag. The git push origin &#8211;delete command removes a branch from a remote repository.<\/em><\/p>\n\n\n\n<p>Branching lets you create independent versions of a project you can edit without affecting the main version of the project. When you are finished with a branch, you should delete it. This will help to keep your codebase clean.<\/p>\n\n\n\n<p>There are two approaches you can use to delete a branch in Git. Which one you use will depend on whether the branch you are deleting is located on your local machine or in a <a href=\"https:\/\/careerkarma.com\/blog\/git-change-remote\/\">remote repository<\/a>.<\/p>\n\n\n\n<p>This tutorial will discuss, with reference to examples, how to delete remote and local branches in Git. By the end of reading this tutorial, you\u2019ll be an expert at deleting local and remote branches.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Git Branching<\/h2>\n\n\n\n<p><a href=\"https:\/\/careerkarma.com\/blog\/git-branch\/\">Branching<\/a> is an essential aspect of version control systems like Git. In Git, branches allow you to create a new version of an existing project. You can make changes to the new branch without affecting the original version of the project.<\/p>\n\n\n\n<p>For instance, you could create a branch so you can work on adding a feature to the project. You could create another branch that stores the code for a bug fix you are working on.<\/p>\n\n\n\n<p>Branching allows you to make changes to a codebase without changing the main version of the code until you are ready. If you\u2019re interested in learning more about Git branches, read our <a href=\"https:\/\/careerkarma.com\/blog\/git-branch\">beginner\u2019s guide to the git branch command<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Delete Branch in Git<\/h2>\n\n\n\n<p>You may decide to delete a branch for a number of reasons. Perhaps you\u2019re done working on the branch and you have integrated the changes you have made into the main version of your project. Therefore, you no longer need the branch.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Git Delete Local Branch<\/h3>\n\n\n\n<p>You can delete a Git branch from your local machine using the <em>git branch -d<\/em> command. The -d flag denotes that you want to delete a branch.<\/p>\n\n\n\n<p>Suppose we have a local branch called <em>fix-issue49<\/em> that we recently merged with the main version of our project. This branch contains a bug fix we were working on. Since we no longer need this local branch, we are ready to delete it.<\/p>\n\n\n\n<p>It is not possible to delete a branch that you are currently viewing. Before deleting a local branch, you must first navigate to any other branch aside from the one you want to delete.<\/p>\n\n\n\n<p>So, because we want to delete <em>fix-issue49<\/em>, we first need to navigate to another branch. To do so, we can use the git checkout command.<\/p>\n\n\n\n<p>The following command allows us to navigate to the master branch in our local repository:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git checkout master<\/pre><\/div>\n\n\n\n<p>Now that we\u2019re on the master branch, we can delete the local <em>fix-issue49<\/em> branch. We can do so using the following code:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git branch -d fix-issue49<\/pre><\/div>\n\n\n\n<p>The <em>-d<\/em> flag indicates that we want to delete our branch. <em>fix-issue49<\/em> is the name of the branch we want to delete. When we run this command, Git deletes the local branch <em>fix-issue49<\/em>.<\/p>\n\n\n\n<p>If Git encounters any problems in deleting our branch, the deletion operation will stop.<\/p>\n\n\n\n<p>You can use the <em>-D<\/em> flag (note the capital letter) to force delete a local branch. The <em>-D<\/em> flag will delete a branch regardless of whether you merged it to another branch in your codebase.<\/p>\n\n\n\n<p>Use the <em>-D<\/em> flag with caution as the flag immediately deletes branches. Unless you are fully confident that you want to delete a branch, it is best to use the <em>-d<\/em> flag.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Git Delete Remote Branch<\/h3>\n\n\n\n<p>To delete a remote branch in Git, you can use the  command. This command instructs Git to <a href=\"https:\/\/careerkarma.com\/blog\/git-push\/\">push your local changes to the remote repository<\/a>. In this process, Git deletes the branch you specify that you want to delete.<\/p>\n\n\n\n<p>Suppose we want to delete a branch called <em>fix-issue12<\/em>. This branch is stored in our remote repository. Our remote <em>origin<\/em> refers to our remote repository. We can delete the <em>fix-issue12<\/em> branch by using the following command:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git push origin --delete fix-issue12<\/pre><\/div>\n\n\n\n<p>The above command deletes the remote <em>fix-issue12<\/em> branch.<\/p>\n\n\n\n<p>After running this command, we should run a <em>fetch<\/em> command to retrieve an up-to-date copy of all the branches stored on our remote repository. This will allow us to see, on our local machine, the changes made to our remote repository.<\/p>\n\n\n\n<p>The following is what we would type into the program to fetch the branches on our remote repository:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>git fetch -p<\/pre><\/div>\n\n\n\n<p>When you run this command, your local Git repository will fetch a copy of the remote repository and its branches. The <em>-p<\/em> flag instructs Git to delete any local branches that no longer exist on your remote repository.<\/p>\n\n\n\n<p>To learn more about the git fetch command, read our guide on <a href=\"https:\/\/careerkarma.com\/blog\/git-fetch\">git fetch<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>Developers usually delete branches after they merge them with others in the repository.<\/p>\n\n\n\n<p>The <em>git branch -d<\/em> command allows you to delete a local branch. The  command allows you to delete a remote branch.<\/p>\n\n\n\n<p>In this tutorial, we discussed how to use these two commands to delete branches in Git. Now you\u2019re equipped with the knowledge you need to start deleting branches like a Git pro!<\/p>\n","protected":false},"excerpt":{"rendered":"Deleting Git branches is common practice after you have merged a branch into your codebase. You can delete a Git branch on your local machine using the git branch -d flag. The git push origin --delete command removes a branch from a remote repository. Branching lets you create independent versions of a project you can&hellip;","protected":false},"author":240,"featured_media":17625,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17286],"tags":[],"class_list":{"0":"post-17624","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 Delete Branch: A Step-By-Step Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"There are two ways to delete a branch in a Git repository. On Career Karma, learn how and when to use each of these to delete a Git branch.\" \/>\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-delete-branch\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Git Delete Branch\" \/>\n<meta property=\"og:description\" content=\"There are two ways to delete a branch in a Git repository. On Career Karma, learn how and when to use each of these to delete a Git branch.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/git-delete-branch\/\" \/>\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-21T09:05:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:03:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/danial-ricaros-FCHlYvR5gJI-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-delete-branch\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-delete-branch\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"Git Delete Branch\",\"datePublished\":\"2020-10-21T09:05:57+00:00\",\"dateModified\":\"2023-12-01T12:03:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-delete-branch\\\/\"},\"wordCount\":875,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-delete-branch\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg\",\"articleSection\":[\"Git\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-delete-branch\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-delete-branch\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-delete-branch\\\/\",\"name\":\"Git Delete Branch: A Step-By-Step Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-delete-branch\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-delete-branch\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg\",\"datePublished\":\"2020-10-21T09:05:57+00:00\",\"dateModified\":\"2023-12-01T12:03:16+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"There are two ways to delete a branch in a Git repository. On Career Karma, learn how and when to use each of these to delete a Git branch.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-delete-branch\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-delete-branch\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-delete-branch\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg\",\"width\":1020,\"height\":680,\"caption\":\"A person writing lines of code on a laptop\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/git-delete-branch\\\/#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 Delete Branch\"}]},{\"@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 Delete Branch: A Step-By-Step Guide | Career Karma","description":"There are two ways to delete a branch in a Git repository. On Career Karma, learn how and when to use each of these to delete a Git branch.","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-delete-branch\/","og_locale":"en_US","og_type":"article","og_title":"Git Delete Branch","og_description":"There are two ways to delete a branch in a Git repository. On Career Karma, learn how and when to use each of these to delete a Git branch.","og_url":"https:\/\/careerkarma.com\/blog\/git-delete-branch\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-10-21T09:05:57+00:00","article_modified_time":"2023-12-01T12:03:16+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/danial-ricaros-FCHlYvR5gJI-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-delete-branch\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/git-delete-branch\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"Git Delete Branch","datePublished":"2020-10-21T09:05:57+00:00","dateModified":"2023-12-01T12:03:16+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-delete-branch\/"},"wordCount":875,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-delete-branch\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg","articleSection":["Git"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/git-delete-branch\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/git-delete-branch\/","url":"https:\/\/careerkarma.com\/blog\/git-delete-branch\/","name":"Git Delete Branch: A Step-By-Step Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/git-delete-branch\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/git-delete-branch\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg","datePublished":"2020-10-21T09:05:57+00:00","dateModified":"2023-12-01T12:03:16+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"There are two ways to delete a branch in a Git repository. On Career Karma, learn how and when to use each of these to delete a Git branch.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/git-delete-branch\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/git-delete-branch\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/git-delete-branch\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg","width":1020,"height":680,"caption":"A person writing lines of code on a laptop"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/git-delete-branch\/#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 Delete Branch"}]},{"@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\/17624","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=17624"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/17624\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/17625"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=17624"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=17624"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=17624"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}